-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
81 lines (81 loc) · 2.66 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "example-commits-prs",
"version": "0.0.0-development",
"description": "Kovi example of PRs and Commits",
"productName": "Example of Commits and PRs",
"cordovaId": "org.cordova.quasar.app",
"capacitorId": "",
"author": "Heitor Ramon Ribeiro <[email protected]>",
"repositoryUrl": "https://github.com/kovihq/example-commits-prs",
"private": true,
"scripts": {
"lint": "eslint --ext .js,.ts,.vue --fix --ignore-path .gitignore ./",
"test": "echo \"See package.json => scripts for available tests.\" && exit 0",
"commit": "npx git-cz",
"semantic-release": "semantic-release",
"test:unit": "jest --updateSnapshot",
"test:unit:coverage": "jest --coverage",
"test:unit:watch": "jest --watch",
"test:unit:watchAll": "jest --watchAll",
"serve:test:coverage": "quasar serve test/jest/coverage/lcov-report/ --port 8788",
"concurrently:dev:jest": "concurrently \"quasar dev\" \"jest --watch\"",
"test:unit:ui": "majestic",
"test:e2e": "cypress open",
"test:e2e:CI": "cypress run"
},
"dependencies": {
"@quasar/extras": "^1.4.1",
"axios": "^0.19.1",
"quasar": "^1.7.3",
"vue-i18n": "^8.15.3"
},
"devDependencies": {
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"@quasar/app": "^1.5.1",
"@quasar/quasar-app-extension-dotenv": "^1.0.0",
"@quasar/quasar-app-extension-typescript": "^1.0.0-beta.2",
"@quasar/quasar-app-extension-testing": "^1.0.0",
"@quasar/quasar-app-extension-testing-e2e-cypress": "^1.0.0-beta.10",
"@quasar/quasar-app-extension-testing-unit-jest": "^1.0.0",
"@semantic-release/changelog": "^3.0.6",
"@semantic-release/git": "^8.0.0",
"@vue/eslint-config-airbnb": "^5.0.2",
"babel-eslint": "^10.0.3",
"commitizen": "^4.0.3",
"cz-conventional-changelog": "3.0.2",
"eslint": "^6.8.0",
"eslint-loader": "^3.0.3",
"eslint-plugin-vue": "^6.1.2",
"husky": "^4.0.10",
"lint-staged": "^9.5.0",
"semantic-release": "^16.0.2",
"@types/node": "11.9.5",
"@typescript-eslint/eslint-plugin": "^1.12.0",
"@typescript-eslint/parser": "^1.12.0",
"typescript": "^3.3.3",
"eslint-config-prettier": "^6.0.0",
"majestic": "^1.2.24",
"wallaby-vue-compiler": "^1.0.3"
},
"engines": {
"node": ">= 10.18.1",
"npm": ">= 6.13.4",
"yarn": ">= 1.21.1"
},
"browserslist": [
"last 1 version, not dead, ie >= 11"
],
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"repository": {
"type": "git",
"url": "https://github.com/kovihq/example-commits-prs.git"
},
"publishConfig": {
"access": "restricted"
}
}