package.json
1.9 KB
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
{
"name": "<feewee>fw-h5app-template</feewee>",
"version": "1.0.0",
"scripts": {
"reset": "npx rimraf ./**/node_modules",
"dev": "cross-env MODERN_ENV=staging modern dev",
"dev:prod": "cross-env MODERN_ENV=prod modern dev",
"dev:ultra": "cross-env MODERN_ENV=ultra modern dev",
"build": "cross-env MODERN_ENV=staging modern build",
"build:prod": "cross-env MODERN_ENV=prod modern build",
"build:ultra": "cross-env MODERN_ENV=ultra modern build",
"serve": "modern serve",
"new": "modern new",
"lint": "modern lint",
"prepare": "husky install",
"preinstall": "node ./script/preinstall.js",
"upgrade": "modern upgrade",
"test": "modern test"
},
"engines": {
"node": ">=18.0.0"
},
"eslintIgnore": [
"node_modules/",
"dist/"
],
"dependencies": {
"@ant-design/cssinjs": "^1.21.1",
"@ant-design/icons": "^5.4.0",
"@feewee/h5app-common": "^0.1.107",
"@modern-js/plugin-polyfill": "~2.55.0",
"@modern-js/runtime": "~2.55.0",
"ahooks": "^3.8.0",
"antd": "^5.20.0",
"clsx": "^2.1.1",
"dayjs": "^1.11.12",
"lodash": "^4.17.21",
"query-string": "^9.1.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"use-immer": "^0.9.0"
},
"devDependencies": {
"@feewee/fabric": "^1.1.8",
"@modern-js-app/eslint-config": "~2.55.0",
"@modern-js/app-tools": "~2.55.0",
"@modern-js/eslint-config": "~2.55.0",
"@modern-js/plugin-tailwindcss": "~2.55.0",
"@modern-js/tsconfig": "~2.55.0",
"@rsdoctor/rspack-plugin": "^0.3.11",
"@types/jest": "^29.5.12",
"@types/lodash": "^4.17.7",
"@types/node": "^18.19.43",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"cross-env": "^7.0.3",
"eslint": "^8.57.0",
"husky": "^9.1.4",
"lint-staged": "^15.2.8",
"prettier": "^3.3.3",
"rimraf": "^5.0.10",
"tailwindcss": "^3.4.7",
"typescript": "^5.5.4"
}
}