-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
47 lines (47 loc) · 1.11 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
{
"private": true,
"name": "dumi-app",
"scripts": {
"start": "dumi dev",
"build": "dumi build",
"prettier": "prettier --write \"**/*.{js,jsx,tsx,ts,less,md,json}\""
},
"main": "dist/index.js",
"module": "dist/index.esm.js",
"typings": "dist/index.d.ts",
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.{js,jsx,less,md,json}": [
"prettier --write"
],
"*.ts?(x)": [
"prettier --parser=typescript --write"
]
},
"devDependencies": {
"@formily/antd": "^1.3.6",
"@formily/antd-components": "^1.3.6",
"@types/classnames": "^2.2.10",
"@types/js-cookie": "^2.2.6",
"@types/localforage": "^0.0.34",
"@types/uuid": "^8.3.0",
"@umijs/fabric": "^2.3.0",
"@umijs/preset-react": "^1.6.13",
"cross-env": "^7.0.2",
"dumi": "^1.0.9",
"husky": "^4.3.0",
"lint-staged": "^10.4.2",
"mockjs": "^1.1.0",
"prettier": "^2.1.2",
"stylelint": "^13.7.2",
"yorkie": "^2.0.0"
},
"dependencies": {
"ahooks": "^2.7.0",
"js-cookie": "^2.2.1",
"localforage": "^1.9.0",
"styled-components": "^5.2.0"
}
}