-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
86 lines (86 loc) · 2.5 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "react-suspense-boundary",
"version": "3.0.0",
"repository": "[email protected]:ecomfe/react-suspense-boundary.git",
"license": "MIT",
"author": "otakustay <[email protected]>",
"type": "module",
"files": [
"dist"
],
"sideEffects": false,
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"scripts": {
"build": "rm -rf dist && tsc -p tsconfig.build.json",
"build:demo": "skr build --clean --src-dir=demo",
"lint": "skr lint src demo --strict",
"lint-staged": "npm run lint -- --staged --fix --auto-stage",
"test": "vitest run",
"prepublishOnly": "npm run build",
"start": "skr dev --src-dir=demo",
"release": "standard-version",
"deploy": "npm publish",
"prerelase": "npm run ci",
"ci": "yarn install --immutable && npm run lint && npm run test && npm run build && npm run build:demo"
},
"dependencies": {
"fast-json-stable-stringify": "^2.1.0"
},
"devDependencies": {
"@emotion/css": "^11.11.2",
"@emotion/react": "^11.11.4",
"@emotion/styled": "^11.11.0",
"@faker-js/faker": "^8.4.1",
"@reskript/cli": "6.2.1",
"@reskript/cli-build": "6.2.1",
"@reskript/cli-dev": "6.2.1",
"@reskript/cli-lint": "6.2.1",
"@reskript/config-lint": "6.2.1",
"@reskript/settings": "6.2.1",
"@testing-library/react-hooks": "^8.0.1",
"@types/react": "^18.2.67",
"@types/react-dom": "^18.2.22",
"@types/react-router-dom": "^5.3.3",
"@types/react-test-renderer": "^18.0.7",
"@vitejs/plugin-react": "^4.2.1",
"antd": "^5.15.3",
"axios": "^1.6.8",
"c8": "^9.1.0",
"core-js": "^3.36.1",
"echarts": "^5.5.0",
"eslint": "^8.57.0",
"history": "^5.3.0",
"husky": "^9.0.11",
"jsdom": "^24.0.0",
"prism-themes": "^1.9.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-icons": "^5.0.1",
"react-loading": "^2.0.3",
"react-refractor": "^2.1.7",
"react-router-dom": "^6.22.3",
"react-test-renderer": "^18.2.0",
"refractor": "^4.8.1",
"standard-version": "^9.5.0",
"stylelint": "^15.11.0",
"typescript": "^5.4.3",
"vite": "^4.5.2",
"vitest": "^1.4.0"
},
"peerDependencies": {
"react": ">= 18"
},
"packageManager": "[email protected]+sha256.f3cc0eda8e5560e529c7147565b30faa43b4e472d90e8634d7134a37c7f59781",
"resolutions": {
"@types/react": "18.x",
"@types/react-dom": "18.x"
}
}