forked from lexmin0412/taro3-react-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·116 lines (116 loc) · 3.77 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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"name": "taro3-react-template",
"version": "1.0.0",
"private": true,
"description": "taro3-react多端项目模板",
"templateInfo": {
"name": "mobx",
"typescript": true,
"css": "sass"
},
"scripts": {
"build:mp-local": "cross-env BUILD_ENV=local taro build --type weapp",
"build:mp-dev": "cross-env BUILD_ENV=dev taro build --type weapp",
"build:mp-test": "cross-env BUILD_ENV=test taro build --type weapp",
"build:mp-uat": "cross-env BUILD_ENV=uat taro build --type weapp",
"build:mp-pro": "cross-env BUILD_ENV=pro taro build --type weapp",
"dev:mp-local": "npm run build:mp-local -- --watch",
"dev:mp-dev": "npm run build:mp-dev -- --watch",
"dev:mp-test": "npm run build:mp-test -- --watch",
"dev:mp-uat": "npm run build:mp-uat -- --watch",
"dev:mp-pro": "npm run build:mp-pro -- --watch",
"build:h5-local": "cross-env BUILD_ENV=local taro build --type h5",
"build:h5-dev": "cross-env BUILD_ENV=dev taro build --type h5",
"build:h5-test": "cross-env BUILD_ENV=test taro build --type h5",
"build:h5-uat": "cross-env BUILD_ENV=uat taro build --type h5",
"build:h5-pro": "cross-env BUILD_ENV=pro taro build --type h5",
"dev:h5-local": "npm run build:h5-local -- --watch",
"dev:h5-dev": "npm run build:h5-dev -- --watch",
"dev:h5-test": "npm run build:h5-test -- --watch",
"dev:h5-uat": "npm run build:h5-uat -- --watch",
"dev:h5-pro": "npm run build:h5-pro -- --watch",
"new": "plop --plopfile generators/index.js",
"preview:mp": "npx mpa",
"preview:mp-local-watch": "npm run preview:mp && npm run dev:mp-local"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged && lint-staged",
"commit-msg": "commitlint -e $HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"**/*.js": "eslint --ext .js",
"src/**/*.ts": "eslint --ext .ts",
"src/**/*.tsx": "eslint --ext .tsx",
"**/*.md": "markdownlint-cli2 .md"
},
"browserslist": [
"last 3 versions",
"Android >= 4.1",
"ios >= 8"
],
"author": "",
"license": "MIT",
"dependencies": {
"@babel/runtime": "^7.7.7",
"@tarojs/components": "3.5.3",
"@tarojs/helper": "3.5.3",
"@tarojs/plugin-framework-react": "3.5.3",
"@tarojs/plugin-platform-weapp": "3.5.3",
"@tarojs/react": "3.5.3",
"@tarojs/router": "3.5.3",
"@tarojs/runtime": "3.5.3",
"@tarojs/shared": "3.5.3",
"@tarojs/taro": "3.5.3",
"@tarojs/taro-h5": "3.5.3",
"evil-eval": "^0.0.1",
"mobx": "^4.8.0",
"mobx-react": "^6.1.4",
"nervjs": "^1.5.7",
"react": "18.2.0",
"react-dom": "18.2.0",
"taro-x-ui": "0.0.1",
"wtils": "^0.2.0"
},
"devDependencies": {
"@babel/core": "^7.8.0",
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@commitlint/lint": "^17.0.3",
"@pmmmwh/react-refresh-webpack-plugin": "0.5.4",
"@tarojs/cli": "3.5.3",
"@tarojs/webpack5-runner": "3.5.2",
"@tarox/plugin-init-app": "^1.0.0-alpha.16",
"@types/react": "18.0.15",
"@types/webpack-env": "^1.13.6",
"@typescript-eslint/eslint-plugin": "^4.0.0",
"@typescript-eslint/parser": "^4.0.0",
"@youtils/commitlint-plugin-standard": "^0.0.1",
"@youtils/prettier-config-standard": "^1.0.1",
"babel-loader": "^8.2.5",
"babel-preset-taro": "3.5.3",
"cache-loader": "^4.1.0",
"cross-env": "^7.0.2",
"eslint": "^6.8.0",
"eslint-config-taro": "3.5.3",
"eslint-plugin-import": "^2.12.0",
"eslint-plugin-react": "^7.8.2",
"eslint-plugin-react-hooks": "^1.6.1",
"husky": "^4.3.0",
"lint-staged": "^10.4.0",
"markdownlint": "^0.25.1",
"markdownlint-cli2": "^0.4.0",
"miniprogram-automator": "^0.11.0",
"miniprogram-automator-scripts": "0.0.2",
"plop": "^2.7.4",
"prettier": "^2.1.2",
"pretty-quick": "^3.0.2",
"react-refresh": "0.11.0",
"stylelint": "9.3.0",
"taro-plugin-compiler-optimization": "^1.0.1",
"thread-loader": "^3.0.4",
"typescript": "^4.1.0",
"webpack": "^5.74.0"
}
}