-
Notifications
You must be signed in to change notification settings - Fork 212
/
package.json
100 lines (100 loc) · 2.69 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
92
93
94
95
96
97
98
99
100
{
"name": "egg-react-ssr",
"private": true,
"workspaces": [
"packages/*"
],
"version": "2.0.0",
"description": "The Best Scheme for Server Side Rendering",
"main": "index.js",
"directories": {
"doc": "docs",
"example": "example"
},
"scripts": {
"clean": "rm -rf packages/**/lib packages/**/es && lerna clean",
"watch": "lerna run watch:cjs --stream --parallel",
"build": "lerna run build --stream --parallel",
"bootstrap": "npm i && lerna bootstrap && node ./test/scripts/preInstall.js",
"lint": "tslint -c tslint.json -p ./tsconfig.json && standard",
"lint:fix": "standard --fix && tslint -c tslint.json -p ./tsconfig.json --fix",
"test": "node ./test/scripts/preInstall.js && npm run test:unit && npm run test:e2e",
"test:unit": "jest --coverage && codecov",
"test:e2e": "NODE_ENV=production ts-node ./test/e2e/startServer.js",
"docs:dev": "vuepress dev docs",
"docs:build": "vuepress build docs",
"docs:publish": "npm run docs:build && surge ./docs/.vuepress/dist ykfe.surge.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ykfe/egg-react-ssr.git"
},
"author": "ykfe",
"license": "MIT",
"bugs": {
"url": "https://github.com/ykfe/egg-react-ssr/issues"
},
"husky": {
"hooks": {
"pre-commit": "yarn lint"
}
},
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
},
"engines": {
"node": ">=8"
},
"standard": {
"parser": "babel-eslint",
"ignore": [
"**/app/public",
"**/dist/",
"**/run/",
"**/log/",
"**/lib/",
"**/bin/",
"**/es/",
"packages/ykfe-utils/src/loadable.js",
"**/node_modules/**",
"**/output/**",
"jest.setup.js"
],
"global": [
"__isBrowser__",
"location",
"window",
"jest"
]
},
"homepage": "https://github.com/ykfe/egg-react-ssr#readme",
"devDependencies": {
"@types/enzyme": "^3.10.4",
"@types/jest": "^24.0.18",
"@types/node": "^12.12.17",
"@types/react": "^16.9.5",
"@types/react-dom": "^16.9.5",
"@types/react-router-dom": "^5.1.3",
"@types/shelljs": "^0.8.6",
"babel-eslint": "^10.0.2",
"chromedriver": "^90.0.1",
"codecov": "^3.5.0",
"egg": "^2.23.0",
"enzyme": "^3.10.0",
"enzyme-adapter-react-16": "^1.15.1",
"husky": "^4.3.0",
"jest": "^24.9.0",
"lerna": "^3.8.0",
"nightwatch": "^1.2.1",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-router-dom": "^5.1.2",
"standard": "^12.0.1",
"ts-jest": "^24.0.2",
"ts-node": "^8.5.4",
"tslint": "^6.0.0",
"tslint-config-standard": "^8.0.1",
"typescript": "^3.7.5",
"vuepress": "^0.14.8"
}
}