-
Notifications
You must be signed in to change notification settings - Fork 98
/
package.json
61 lines (61 loc) · 1.6 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
{
"name": "hox",
"version": "2.0.0-alpha.0",
"description": "React store with hooks.",
"license": "MIT",
"private": false,
"peerDependencies": {
"react": ">=16.8.0"
},
"scripts": {
"build": "gulp build",
"test": "jest",
"lint": "tslint -p tsconfig.json",
"umd": "rollup --config rollup.config.js",
"prepare": "husky install"
},
"main": "./cjs/index.js",
"module": "./es/index.js",
"types": "./es/index.d.ts",
"typings": "./es/index.d.ts",
"unpkg": "./umd/antd-mobile.js",
"GravityCDN": "./umd/antd-mobile.js",
"devDependencies": {
"@testing-library/dom": "^8.11.1",
"@testing-library/jest-dom": "^5.15.1",
"@testing-library/react": "^13.2.0",
"@types/hoist-non-react-statics": "^3.3.1",
"@types/jest": "^27.0.3",
"@types/node": "^17.0.33",
"@types/react": "^18.0.0",
"@types/react-dom": "^18.0.0",
"@types/react-test-renderer": "^18.0.0",
"@types/use-sync-external-store": "^0.0.3",
"ahooks": "^3.3.10",
"del": "^6.0.0",
"gulp": "^4.0.2",
"gulp-typescript": "^5.0.1",
"husky": "^8.0.1",
"jest": "^28.1.0",
"jest-environment-jsdom": "^28.1.0",
"prettier": "^2.6.2",
"pretty-quick": "^3.1.3",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"react-test-renderer": "^18.1.0",
"rollup": "^1.21.4",
"ts-jest": "^28.0.2",
"tslint": "^6.1.3",
"typescript": "~4.5.0"
},
"dependencies": {
"use-sync-external-store": "^1.1.0"
},
"resolutions": {
"@types/react": "18",
"@types/react-dom": "18"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
}
}