-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
102 lines (102 loc) · 2.74 KB
/
package.json
File metadata and controls
102 lines (102 loc) · 2.74 KB
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
{
"name": "crui",
"version": "2.6.0",
"description": "react代码快速生成工具",
"scripts": {
"start": "umi dev",
"build": "umi build",
"test": "jest",
"lint": "eslint --ext .js src mock tests",
"precommit": "lint-staged",
"commit": "git-cz",
"dev:watch": "NODE_ENV=development npx nodemon server/index.js",
"dev": "NODE_ENV=development node lib/index.js",
"build:server": "tsc -p tsconfig.server.json"
},
"bin": {
"crui": "lib/index.js"
},
"dependencies": {
"@babel/generator": "^7.7.4",
"@babel/parser": "^7.7.5",
"@babel/traverse": "^7.7.4",
"ahooks": "^2.5.0",
"antd": "^3.19.5",
"axios": "^0.19.0",
"behooks": "^0.7.1",
"chalk": "^4.0.0",
"clipboard": "^2.0.4",
"commander": "^4.0.1",
"create-simple-app": "^1.3.1",
"dva": "^2.6.0-beta.6",
"execa": "^3.4.0",
"fs-extra": "^8.1.0",
"glob": "^7.1.6",
"koa": "^2.11.0",
"koa-body": "^4.1.1",
"koa-bodyparser": "^4.2.1",
"koa-cors": "^0.0.16",
"koa-router": "^7.4.0",
"koa-static": "^5.0.0",
"loadsh": "^0.0.4",
"mockjs": "^1.1.0",
"prettier": "^2.0.2",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"socket.io": "^2.3.0",
"socket.io-client": "^2.3.0",
"uuid": "^8.0.0",
"xterm": "^4.4.0"
},
"devDependencies": {
"@types/clipboard": "^2.0.1",
"@types/fs-extra": "^9.0.1",
"@types/jest": "^26.0.0",
"@types/koa": "^2.0.47",
"@types/koa-cors": "^0.0.0",
"@types/koa-router": "^7.0.35",
"@types/koa-static": "^4.0.1",
"@types/mockjs": "^1.0.3",
"@types/node": "^14.0.13",
"@types/socket.io": "^2.1.8",
"@types/socket.io-client": "^1.4.33",
"@types/supertest": "^2.0.9",
"@types/uuid": "^8.0.0",
"@typescript-eslint/eslint-plugin": "^3.2.0",
"@typescript-eslint/parser": "^3.2.0",
"@umijs/preset-react": "^1.5.6",
"babel-eslint": "^9.0.0",
"crui": "^2.0.1",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.1.0",
"eslint-config-umi": "^1.4.0",
"eslint-import-resolver-webpack": "^0.12.1",
"eslint-plugin-flowtype": "^2.50.0",
"eslint-plugin-import": "^2.21.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-react": "^7.20.0",
"eslint-plugin-react-hooks": "^2.5.1",
"git-cz": "^3.3.0",
"husky": "^0.14.3",
"jest": "^26.0.1",
"lint-staged": "^7.2.2",
"nodemon": "^2.0.2",
"react-test-renderer": "^16.7.0",
"supertest": "^4.0.2",
"ts-jest": "^26.1.1",
"ts-node": "^8.10.2",
"typescript": "^3.9.5",
"umi": "3.2.3",
"umi-ui-theme": "^1.2.1"
},
"lint-staged": {
"*.{js,jsx}": [
"eslint --fix",
"git add"
]
},
"engines": {
"node": ">=8.0.0"
}
}