-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
40 lines (40 loc) · 1.22 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
{
"name": "accurapp",
"private": true,
"scripts": {
"clean": "rm -rf node_modules; rm -rf packages/*/node_modules; rm yarn.lock; yarn cache clean",
"lint": "node node_modules/eslint/bin/eslint.js packages",
"test": "./test/e2e.sh",
"create-test-app": "./test/create-test-app.sh",
"create-test-app-start": "(yarn create-test-app && cd test-app/ && BROWSER=false yarn start)",
"create-test-app-build": "(yarn create-test-app && cd test-app/ && yarn build)",
"create-test-app-test": "(yarn create-test-app && cd test-app/ && yarn test --watch=false)",
"publish": "is-git-status-clean && lerna publish --conventional-commits --message 'chore: 🚀 Publish'"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"workspaces": [
"packages/*"
],
"engines": {
"node": ">=10",
"yarn": ">=1.2.1"
},
"devDependencies": {
"@commitlint/cli": "8.3.5",
"@commitlint/config-conventional": "8.3.4",
"eslint-config-accurapp": "./packages/eslint-config-accurapp",
"fkill": "7.0.0",
"husky": "4.2.5",
"is-git-status-clean": "1.0.0",
"lerna": "3.20.2"
}
}