forked from alibaba/hooks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·69 lines (69 loc) · 2 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
{
"name": "ahooks",
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/alibaba/hooks.git"
},
"scripts": {
"init": "rm -rf node_modules && npm install && npm run clean && npm run bootstrap && npm run build",
"start": "npm run dev",
"dev": "dumi dev",
"bootstrap": "lerna bootstrap",
"clean": "lerna clean --yes",
"build": "lerna run build",
"test": "jest",
"lint": "eslint --ignore-pattern **/__tests__/* --ignore-pattern **/demo/* \"packages/*/src/**/*.{ts,tsx}\"",
"build:doc": "dumi build",
"pub:doc": "surge ./dist --domain ahooks.js.org",
"pub": "lerna publish"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"devDependencies": {
"@babel/cli": "^7.10.1",
"@babel/core": "^7.10.2",
"@testing-library/react": "^10.0.4",
"@testing-library/react-hooks": "^2.0.1",
"@types/jest": "^24.9.1",
"@types/lodash.debounce": "^4.0.6",
"@types/lodash.isequal": "^4.5.5",
"@types/lodash.throttle": "^4.1.6",
"@umijs/fabric": "^2.1.0",
"@umijs/plugin-sass": "^1.1.1",
"antd": "^4.3.3",
"babel-loader": "^8.1.0",
"babel-plugin-import": "^1.12.0",
"babel-plugin-transform-async-to-promises": "^0.8.15",
"del": "^5.1.0",
"dumi": "^1.1.0-beta.12",
"enzyme": "^3.10.0",
"eslint": "^7.2.0",
"eslint-plugin-react-hooks": "^4.0.8",
"gulp": "^4.0.2",
"gulp-babel": "^8.0.0",
"gulp-typescript": "^6.0.0-alpha.1",
"husky": "^4.2.5",
"jest": "^26.0.1",
"jest-fetch-mock": "^3.0.3",
"lerna": "^2.11.0",
"mockdate": "^3.0.2",
"mockjs": "^1.1.0",
"prettier": "^2.0.5",
"pretty-quick": "^2.0.1",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-drag-listview": "^0.1.6",
"react-test-renderer": "^16.13.1",
"surge": "^0.21.3",
"ts-jest": "^26.1.0",
"typescript": "^3.3.3",
"umi-request": "^1.2.18",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.10",
"webpack-merge": "^4.2.2"
}
}