-
Notifications
You must be signed in to change notification settings - Fork 30
/
package.json
63 lines (63 loc) · 1.88 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
{
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"build": "cd packages/react-scripts-parcel && node bin/react-scripts-parcel.js build",
"changelog": "lerna-changelog",
"create-react-app-parcel": "node tasks/crap.js",
"e2e": "tasks/e2e-simple.sh",
"e2e:docker": "tasks/local-test.sh",
"IGNOREpostinstall": "cd packages/react-error-overlay/ && yarn build:prod",
"publish": "tasks/publish.sh",
"start": "cd packages/react-scripts-parcel && node bin/react-scripts-parcel.js start",
"screencast": "node ./tasks/screencast.js",
"screencast:error": "svg-term --cast jyu19xGl88FQ3poMY8Hbmfw8y --out screencast-error.svg --window --at 12000 --no-cursor",
"test": "cd packages/react-scripts-parcel && node bin/react-scripts-parcel.js test --env=jsdom",
"format": "prettier --trailing-comma es5 --single-quote --write 'packages/*/*.js' 'packages/*/!(node_modules)/**/*.js'",
"precommit": "lint-staged"
},
"devDependencies": {
"@commitlint/cli": "^8.2.0",
"@commitlint/config-conventional": "^8.2.0",
"cz-conventional-changelog": "^3.0.2",
"eslint": "^4.19.1",
"execa": "^0.10.0",
"husky": "^3.0.9",
"lerna": "^2.11.0",
"lerna-changelog": "^0.7.0",
"lint-staged": "^7.1.0",
"meow": "^5.0.0",
"multimatch": "^2.1.0",
"prettier": "^1.12.1",
"svg-term-cli": "^2.1.1",
"tempy": "^0.2.1"
},
"lint-staged": {
"*.js": [
"prettier --trailing-comma es5 --single-quote --write",
"git add"
],
"yarn.lock": [
"git rm --cached"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"changelog": {
"labels": {
"feature": "New Feature",
"perf": "Performance Improvements",
"bug": "Bug fix"
}
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}