forked from alijk-fe/motor-rax
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
91 lines (91 loc) · 3.28 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"private": true,
"devEngines": {
"node": "8.x || 9.x || 10.x || 11.x",
"npm": "6.x"
},
"devDependencies": {
"@babel/core": "7.2.0",
"@babel/plugin-proposal-class-properties": "7.2.0",
"@babel/plugin-proposal-decorators": "7.2.0",
"@babel/plugin-proposal-export-default-from": "7.2.0",
"@babel/plugin-transform-runtime": "^7.2.0",
"@babel/preset-env": "7.2.0",
"@babel/preset-flow": "7.0.0",
"@babel/preset-react": "7.0.0",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "10.0.1",
"babel-jest": "23.6.0",
"babel-loader": "8.0.4",
"babel-merge": "^3.0.0",
"babel-plugin-transform-jsx-stylesheet": "0.6.5",
"chalk": "^2.4.1",
"chokidar": "^2.0.4",
"codecov": "^3.1.0",
"conventional-commit-types": "^2.2.0",
"cz-conventional-changelog": "^2.1.0",
"eslint": "^5.10.0",
"eslint-plugin-ejs": "0.0.2",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-react": "~7.11.1",
"findup": "^0.1.5",
"ghooks": "^2.0.4",
"glob": "^7.1.3",
"gzip-size": "^5.0.0",
"image-source-loader": "^0.6.5",
"istanbul-api": "^2.0.6",
"istanbul-lib-coverage": "^2.0.1",
"jest": "^23.6.0",
"jest-diff": "^24.9.0",
"jest-environment-node": "^23.4.0",
"jest-localstorage-mock": "^2.3.0",
"lerna": "^3.16.4",
"minimatch": "^3.0.4",
"minimist": "^1.2.0",
"rax-webpack-plugin": "^0.6.5",
"rimraf": "^2.6.2",
"rollup": "^1.20.3",
"rollup-plugin-babel": "^4.3.2",
"rollup-plugin-commonjs": "^10.0.2",
"rollup-plugin-memory": "^3.0.0",
"rollup-plugin-node-resolve": "^4.0.0",
"rollup-plugin-replace": "^2.1.0",
"rollup-plugin-uglify": "^6.0.2",
"semver-regex": "^2.0.0",
"stylesheet-loader": "^0.6.5",
"uglifyjs-webpack-plugin": "^2.0.1",
"uppercamelcase": "^3.0.0",
"webpack": "^4.27.1"
},
"scripts": {
"bootstrap": "lerna bootstrap --no-ci",
"setup": "npm run build:compile && npm run bootstrap && npm run build:dist",
"build:compile": "npm run clean:compile && npm run build:compile:packages",
"build:compile:packages": "node ./scripts/compile-packages.js",
"build:dist": "npm run clean:dist && node ./scripts/dist-core.js",
"build": "npm run build:compile && npm run build:dist",
"watch:compile": "node ./scripts/compile-packages.js --watch",
"test": "npm run test:core",
"test:core": "jest --logHeapUsage --detectOpenHandles",
"lint": "npm run lint:nofix -- --fix",
"lint:nofix": "eslint --ext .js --ext .jsx ./",
"coverage": "npm run test -- --coverage",
"coverage:upload": "npm run clean:coverage && npm run coverage && node ./scripts/mapCoverage.js && codecov",
"publish": "node ./scripts/publish.js",
"clean:dist": "rm -rf ./packages/*/dist",
"clean:compile": "rm -rf ./packages/*/lib",
"clean:coverage": "rm -rf ./coverage",
"clean:modules": "rm -rf ./packages/*/node_modules",
"clean": "jest --clearCache && npm run clean:modules && npm run clean:compile && npm run clean:dist && npm run clean:coverage",
"clear": "git clean -xfd",
"bench": "cd scripts/bench && npm install && npm start"
},
"config": {
"ghooks": {
"commit-msg": "./scripts/validate-commit-msg.js"
},
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}