-
Notifications
You must be signed in to change notification settings - Fork 99
/
package.json
70 lines (70 loc) · 2.09 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
70
{
"name": "hox",
"version": "2.1.1",
"description": "React store with hooks.",
"license": "MIT",
"private": false,
"scripts": {
"start": "dumi dev",
"build": "NODE_OPTIONS=--no-experimental-fetch gulp build",
"test": "jest",
"lint": "tslint -p tsconfig.json",
"umd": "rollup --config rollup.config.js",
"build-doc": "NODE_OPTIONS=--openssl-legacy-provider dumi build",
"publish": "npm publish ./lib --registry=https://registry.npmjs.org",
"publish:alpha": "npm publish ./lib --registry=https://registry.npmjs.org --tag alpha",
"publish:dev": "npm publish ./lib --registry=https://registry.npmjs.org --tag dev",
"prepare": "husky"
},
"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",
"dependencies": {
"use-sync-external-store": "^1.2.0"
},
"peerDependencies": {
"react": ">=16.8.0"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^22.0.2",
"@rollup/plugin-node-resolve": "^13.3.0",
"@testing-library/dom": "^9.3.3",
"@testing-library/jest-dom": "^6.1.4",
"@testing-library/react": "^14.1.0",
"@types/hoist-non-react-statics": "^3.3.5",
"@types/jest": "^29.5.8",
"@types/node": "^17.0.45",
"@types/react": "^18.2.37",
"@types/react-dom": "^18.2.15",
"@types/react-test-renderer": "^18.0.6",
"@types/use-sync-external-store": "^0.0.6",
"ahooks": "^3.7.8",
"del": "^6.1.1",
"dumi": "^1.1.54",
"gulp": "^4.0.2",
"gulp-typescript": "^5.0.1",
"husky": "^9.0.11",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"prettier": "^2.8.8",
"pretty-quick": "^3.1.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-test-renderer": "^18.2.0",
"rollup": "^2.79.1",
"through2": "^4.0.2",
"ts-jest": "^29.1.1",
"tslint": "^6.1.3",
"typescript": "^5.2.2"
},
"resolutions": {
"@types/react": "18",
"@types/react-dom": "18"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
}
}