-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.76 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
{
"name": "faz-ui",
"version": "1.0.4",
"scripts": {
"start": "dumi dev",
"docs:build": "dumi build && npm run oss",
"docs:deploy": "gh-pages -d docs-dist",
"build": "father-build",
"deploy": "npm run docs:build && npm run docs:deploy",
"release": "npm run build && npm publish",
"prettier": "prettier --write \"**/*.{js,jsx,tsx,ts,less,md,json}\"",
"test": "umi-test",
"test:coverage": "umi-test --coverage",
"oss": "node ./oss.js --bucket=faz-source --ossCatalog=docs-dist --distCatalog=docs-dist"
},
"main": "dist/index.js",
"module": "dist/index.esm.js",
"typings": "dist/index.d.ts",
"license": "MIT",
"gitHooks": {
"pre-commit": "lint-staged"
},
"files": [
"dist"
],
"lint-staged": {
"*.{js,jsx,less,md,json}": [
"prettier --write"
],
"*.ts?(x)": [
"prettier --parser=typescript --write"
]
},
"dependencies": {
"@babel/runtime": "^7.11.2",
"d3-ease": "^1.0.7",
"lodash": "^4.17.20",
"raf": "^3.4.1",
"react": "^16.12.0",
"react-dom": "^16.13.1",
"react-icons": "^3.11.0",
"react-is": "^16.13.1",
"react-spring": "^8.0.27",
"resize-observer-polyfill": "^1.5.1",
"styled-components": "^5.1.1",
"uuid": "^8.3.0"
},
"devDependencies": {
"@types/d3-ease": "^1.0.9",
"@types/react": "^16.9.48",
"@types/react-icons": "^3.0.0",
"@types/styled-components": "^5.1.2",
"@types/uuid": "^8.3.0",
"@umijs/fabric": "^2.2.2",
"@umijs/preset-react": "1.x",
"@umijs/test": "^3.0.5",
"ali-oss": "^6.10.0",
"dumi": "^1.0.9",
"father-build": "^1.17.2",
"gh-pages": "^3.0.0",
"globby": "^11.0.1",
"lint-staged": "^10.0.7",
"prettier": "^1.19.1",
"yargs": "^15.4.1",
"yorkie": "^2.0.0"
}
}