package.json
1.46 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
{
"name": "fw-h5app-template",
"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",
"build": "cross-env MODERN_ENV=staging modern build",
"build:prod": "cross-env MODERN_ENV=prod 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": {
"@modern-js/plugin-tailwindcss": "2.48.5",
"@modern-js/runtime": "2.48.5",
"ahooks": "^3.7.11",
"clsx": "^2.1.0",
"dayjs": "^1.11.10",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"use-immer": "^0.9.0"
},
"devDependencies": {
"@feewee/fabric": "^1.1.8",
"@modern-js-app/eslint-config": "2.48.5",
"@modern-js/app-tools": "2.48.5",
"@modern-js/eslint-config": "2.48.5",
"@modern-js/tsconfig": "2.48.5",
"@types/jest": "^29.2.4",
"@types/node": "^18.11.7",
"@types/react": "^18.0.26",
"@types/react-dom": "^18.0.10",
"cross-env": "^7.0.3",
"eslint": "^8.0.0",
"husky": "^9.0.0",
"lint-staged": "^15.1.0",
"prettier": "^3.2.0",
"rimraf": "^5.0.0",
"tailwindcss": "^3.4.3",
"typescript": "^5.4.0"
}
}