-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathpackage.json
38 lines (38 loc) · 1.17 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
{
"private": true,
"workspaces": [
"packages/@rcpress/*",
"packages/docs"
],
"scripts": {
"bs": "lerna bootstrap",
"cl": "conventional-changelog -p angular -i CHANGELOG.md -s",
"clean": "lerna clean && rm -rf node_modules",
"dev": "yarn workspace docs dev",
"generate": "yarn workspace docs generate",
"generate-with-prefix": "cross-env base=/rcpress yarn generate",
"pre-pub": "lerna publish --conventional-commits --canary",
"pub": "lerna publish --conventional-commits",
"serve": "yarn workspace docs serve",
"build": "yarn workspace docs build",
"test": "jest --config jest.config.js --collectCoverage",
"test-u": "jest -u --collectCoverage"
},
"devDependencies": {
"babel7-jest": "^1.0.1",
"conventional-changelog-cli": "2.0.23",
"cross-env": "5.2.0",
"enzyme": "^3.8.0",
"enzyme-adapter-react-16": "^1.7.1",
"enzyme-to-json": "^3.3.5",
"husky": "^3.0.0",
"jest": "^24.8.0",
"jest-serializer-enzyme": "^1.0.0",
"lerna": "^3.11.1",
"npm-run-all": "^4.1.5",
"prettier": "^1.18.2",
"react-test-renderer": "^16.6.1",
"ts-jest": "^24.0.2",
"typescript": "3.5.3"
}
}