generated from idea2app/Taro-Vant-MobX-ts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
96 lines (96 loc) · 2.85 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
87
88
89
90
91
92
93
94
95
96
{
"name": "@ideamall/mini-app",
"version": "1.0.0",
"private": true,
"description": "Taro project scaffold based on TypeScript, Preact, MobX & Vant",
"templateInfo": {
"name": "default",
"typescript": true,
"css": "less"
},
"scripts": {
"prepare": "husky",
"build": "taro build --type",
"dev": "taro build --watch --type",
"test": "lint-staged",
"prepublishOnly": "cross-env NODE_ENV=production npm run build -- weapp"
},
"browserslist": [
"last 3 versions",
"Android >= 4.1",
"ios >= 8"
],
"dependencies": {
"@antmjs/vantui": "^3.3.5",
"@authing/miniapp-taro": "^5.1.18",
"@babel/runtime": "^7.24.1",
"@ideamall/data-service": "1.0.0-alpha.1",
"@tarojs/components": "3.6.25",
"@tarojs/helper": "3.6.25",
"@tarojs/plugin-framework-react": "3.6.25",
"@tarojs/plugin-html": "3.6.25",
"@tarojs/plugin-http": "3.6.25",
"@tarojs/plugin-platform-alipay": "3.6.25",
"@tarojs/plugin-platform-h5": "3.6.25",
"@tarojs/plugin-platform-jd": "3.6.25",
"@tarojs/plugin-platform-qq": "3.6.25",
"@tarojs/plugin-platform-swan": "3.6.25",
"@tarojs/plugin-platform-tt": "3.6.25",
"@tarojs/plugin-platform-weapp": "3.6.25",
"@tarojs/runtime": "3.6.25",
"@tarojs/shared": "3.6.25",
"@tarojs/taro": "3.6.25",
"@vant/area-data": "^1.5.1",
"@vant/icons": "^3.0.2",
"bootstrap": "^5.3.3",
"classnames": "^2.5.1",
"koajax": "^0.9.6",
"lodash.debounce": "^4.0.8",
"mobx": "^4.15.7",
"mobx-i18n": "^0.4.2",
"mobx-react": "^6.3.1",
"mobx-restful": "^0.6.12",
"preact": "^10.20.0",
"query-string": "^9.0.0",
"web-utility": "^4.3.0"
},
"devDependencies": {
"@babel/core": "^7.24.3",
"@octokit/openapi-types": "^20.0.0",
"@prefresh/babel-plugin": "^0.5.1",
"@prefresh/core": "^1.5.2",
"@prefresh/webpack": "~4.0.0",
"@tarojs/cli": "3.6.25",
"@tarojs/webpack5-runner": "3.6.25",
"@types/lodash.debounce": "^4.0.9",
"@types/react": "^18.2.67",
"@types/webpack-env": "^1.18.4",
"@typescript-eslint/eslint-plugin": "^7.3.1",
"@typescript-eslint/parser": "^7.3.1",
"babel-plugin-import": "^1.13.8",
"babel-preset-taro": "3.6.25",
"cross-env": "^7.0.3",
"eslint": "^8.57.0",
"eslint-config-taro": "3.6.25",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-react": "^7.34.1",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-simple-import-sort": "^12.0.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"prettier": "^3.2.5",
"stylelint": "^16.2.1",
"typescript": "~5.4.3",
"webpack": "~5.91.0"
},
"prettier": {
"trailingComma": "none",
"arrowParens": "avoid",
"singleQuote": true,
"jsxSingleQuote": true
},
"lint-staged": {
"*.{md,js,ts,tsx,json,yml}": "prettier --write",
"*.{js,jsx,ts,tsx}": "eslint --fix"
}
}