-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
50 lines (50 loc) · 1.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
{
"version": "0.0.1",
"private": true,
"keywords": [
"webpack",
"scripts",
"webpack launcher",
"webpack-scripts"
],
"devDependencies": {
"@commitlint/cli": "^7.2.1",
"@commitlint/config-conventional": "^7.1.2",
"commitizen": "^3.0.5",
"cz-conventional-changelog": "^2.1.0",
"eslint": "5.10.0",
"husky": "^1.2.0",
"lerna": "^3.6.0",
"lint-staged": "^8.1.0",
"lodash": "4.17.11",
"prettier": "^1.15.3",
"react": "^16.6.3",
"react-dom": "^16.6.3",
"rimraf": "2.6.2"
},
"scripts": {
"test": "",
"cm": "git-cz",
"postinstall": "node ./postinstall.js",
"bootstrap": "lerna bootstrap --ignore-scripts",
"build-publish": "lerna publish",
"prettier": "prettier --write './**/*(*.js|*.jsx|*.less|*.css)'",
"javascript": "npm start --prefix ./examples/javascript",
"javascript-build": "npm run build --prefix ./examples/javascript",
"javascript-serve-build": "npm run serve-build --prefix ./examples/javascript",
"react": "npm start --prefix ./examples/react",
"react-serve-build": "npm run serve-build --prefix ./examples/react",
"react-build": "npm run build --prefix ./examples/react",
"custom": "npm start --prefix ./examples/custom",
"custom-build": "npm run build --prefix ./examples/custom",
"custom-serve-build": "npm run serve-build --prefix ./examples/custom",
"eject": "npm start --prefix ./examples/eject",
"eject-build": "npm run build --prefix ./examples/eject",
"eject-serve-build": "npm run serve-build --prefix ./examples/eject"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}