-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.5 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.5 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
{
"private": true,
"name": "roothub-codegen",
"scripts": {
"start": "umi dev",
"build": "umi build",
"build:web": "cross-env APP_TYPE=site umi build",
"postinstall": "umi generate tmp",
"prettier": "prettier --write '**/*.{js,jsx,tsx,ts,less,md,json}'",
"test": "umi-test",
"deploy": "node ./scripts/site/gh-pages-publish.js",
"test:coverage": "umi-test --coverage"
},
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.{js,jsx,less,md,json}": [
"prettier --write"
],
"*.ts?(x)": [
"prettier --parser=typescript --write"
]
},
"dependencies": {
"@ant-design/pro-layout": "^6.5.0",
"@codemirror/lang-javascript": "0.19.3",
"@uiw/react-codemirror": "4.2.4",
"ahooks": "^2.10.9",
"axios": "^0.26.0",
"codesandbox": "^2.2.3",
"js-yaml": "^4.1.0",
"lodash": "^4.17.21",
"react": "17.x",
"react-copy-to-clipboard": "^5.0.4",
"react-dom": "17.x",
"spark-md5": "^3.0.2",
"umi": "^3.5.20"
},
"devDependencies": {
"@types/jest": "^27.4.1",
"@types/lodash": "^4.14.178",
"@types/react": "^17.0.0",
"@types/react-copy-to-clipboard": "^5.0.2",
"@types/react-dom": "^17.0.0",
"@umijs/preset-react": "1.x",
"@umijs/test": "^3.5.20",
"cross-env": "^7.0.3",
"fs-extra": "^10.0.0",
"lint-staged": "^10.0.7",
"mobx": "^6.4.2",
"mobx-react": "^7.3.0",
"prettier": "^2.2.0",
"shelljs": "0.8.4",
"typescript": "^4.1.2",
"yorkie": "^2.0.0"
}
}