-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
104 lines (104 loc) · 2.84 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
101
102
103
104
{
"name": "egg-react-typescript-boilerplate",
"version": "5.1.2",
"description": "基于 egg + react + typescript + webpack 服务端渲染工程骨架项目",
"scripts": {
"dev": "egg-bin dev -r egg-ts-helper/register",
"debug": "egg-bin debug",
"build": "npm run tsc && easy build",
"start": "egg-scripts start --port 7001 --workers 4",
"backend": "nohup egg-scripts start --port 7001 --workers 4 &",
"tsc": "ets && tsc -p tsconfig.json",
"clean": "ets clean && easy clean",
"kill": "easy kill",
"lint": "tslint --project . -c tslint.json",
"fix": "tslint --fix --project . -c tslint.json",
"yarn": "yarn --registry https://registry.npmmirror.com",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"app/**/*.ts,tsx": [
"tslint .",
"git add"
]
},
"dependencies": {
"@hubcarl/json-typescript-mapper": "^2.0.1",
"axios": "^0.21.1",
"conventional-changelog-cli": "^1.3.5",
"cross-env": "^7.0.3",
"egg": "^2.1.0",
"egg-cors": "^2.0.0",
"egg-logger": "^2.5.0",
"egg-scripts": "^2.6.0",
"egg-validate": "^2.0.2",
"egg-view-react-ssr": "^3.0.0",
"lodash": "^4.17.4",
"lodash-id": "^0.14.0",
"lowdb": "^1.0.0",
"mo": "^1.7.3",
"mobx": "^6.1.6",
"mobx-react": "7.1.0",
"moment": "^2.17.1",
"react": "17.0.1",
"react-dom": "17.0.1",
"react-loadable": "^5.5.0",
"react-redux": "7.2.2",
"react-router": "5.2.0",
"react-router-config": "5.1.1",
"react-router-dom": "5.2.0",
"react-router-redux": "^4.0.8",
"redux": "4.0.5",
"shortid": "^2.2.8",
"showdown": "^1.8.6"
},
"devDependencies": {
"@types/react": "^17.0.2",
"@types/react-dom": "^17.0.1",
"antd": "^4.12.3",
"autod-egg": "^1.0.0",
"easywebpack-cli": "^5.2.0",
"easywebpack-react": "^5.0.1",
"egg-bin": "^4.7.1",
"egg-ts-helper": "^1.9.0",
"egg-webpack": "^5.0.0",
"egg-webpack-react": "^3.0.0",
"eslint": "^7.20.0",
"eslint-config-egg": "^9.0.0",
"eslint-plugin-react": "^7.1.0",
"husky": "^4.2.5",
"ip": "^1.1.5",
"less": "^4.1.1",
"less-loader": "^8.0.0",
"lint-staged": "^10.2.2",
"ts-loader": "^8.0.17",
"tslint": "^6.1.3",
"tslint-loader": "^3.5.3",
"typescript": "^4.1.5"
},
"egg": {
"typescript": true
},
"engines": {
"node": ">=10.0.0"
},
"ci": {
"version": "10, 12, 14"
},
"repository": {
"type": "git",
"url": "git+https://github.com/easy-team/egg-react-typescript-boilerplate.git"
},
"publishConfig": {
"registry": "https://registry.npmjs.org",
"access": "public"
},
"author": "[email protected]",
"license": "MIT",
"homepage": "https://github.com/easy-team/egg-react-typescript-boilerplate"
}