-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
38 lines (38 loc) · 1.25 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
{
"name": "tradie",
"private": true,
"engines": {
"yarn": "^1.0.0",
"node": ">=8.5.0"
},
"workspaces": ["packages/*/*"],
"dependencies": {
"@commitlint/cli": "^4.3.0",
"@commitlint/config-angular": "^4.3.0",
"@commitlint/prompt-cli": "^4.3.0",
"husky": "^0.14.3",
"lerna": "^2.0.0",
"lint-staged": "^5.0.0",
"prettier": "^1.8.2"
},
"scripts": {
"clean": "lerna run clean && lerna clean",
"link": "node scripts/symlink-previous-version.js",
"upgrade": "lerna exec --concurrency 1 -- npm-check -u",
"commit": "commit",
"build": "node-scripts build",
"test":
"lerna run test --scope \"@tradie/node-scripts\" --scope \"@tradie/processor-utils\" --scope \"@tradie/node-example\"",
"publish:preview":
"yarn run build && yarn run test && lerna publish --canary --exact --npm-tag=next --access=public",
"publish:conventional":
"yarn run build && yarn run test && lerna publish --conventional-commits --access=public",
"commitmsg": "commitlint -e",
"precommit": "lint-staged",
"postinstall": "yarn run link",
"prepublishOnly": "echo 'Run `npm run publish` instead.' && exit 1"
},
"lint-staged": {
"*.{js,jsx,json,css,md}": ["prettier --write", "git add"]
}
}