-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
60 lines (60 loc) · 2.12 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
{
"private": true,
"scripts": {
"start": "concurrently yarn:start:core yarn:start:extension",
"start:remote": "concurrently yarn:start:core:remote yarn:start:extension:remote",
"build": "yarn build:core && yarn build:extension",
"build:local": "yarn build:core:local && yarn build:extension:local",
"test": "yarn build:local && yarn test:extension",
"cz": "git cz",
"log": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0 && git add CHANGELOG.md",
"start:core": "yarn workspace vip-crack-core start",
"start:core:remote": "yarn workspace vip-crack-core start:remote",
"build:core": "yarn workspace vip-crack-core build",
"build:core:local": "yarn workspace vip-crack-core build:local",
"start:extension": "yarn workspace vip-crack-extension start",
"start:extension:remote": "yarn workspace vip-crack-extension start:remote",
"build:extension": "yarn workspace vip-crack-extension build",
"build:extension:local": "yarn workspace vip-crack-extension build:local",
"test:extension": "yarn workspace vip-crack-extension test"
},
"workspaces": [
"packages/*"
],
"devDependencies": {
"@babel/core": "^7.11.1",
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/plugin-proposal-optional-chaining": "^7.11.0",
"@babel/preset-env": "^7.11.0",
"@babel/runtime-corejs3": "^7.11.2",
"@commitlint/cli": "^9.1.2",
"@commitlint/config-conventional": "^9.1.2",
"babel-eslint": "^10.1.0",
"commitizen": "^4.2.1",
"concurrently": "^5.3.0",
"conventional-changelog-cli": "^2.1.0",
"core-js": "^3.6.5",
"cz-conventional-changelog": "^3.2.1",
"eslint": "^7.6.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-vue": "^6.2.2",
"husky": "^4.2.5",
"lint-staged": "^10.2.13",
"prettier": "^2.0.5"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"engines": {
"node": "^10.12.0 || >=12.0.0"
}
}