-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·72 lines (72 loc) · 2.36 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
{
"name": "fit",
"version": "1.0.0",
"private": true,
"author": "Wendao",
"description": "Fit yourself",
"templateInfo": {
"name": "default",
"typescript": true,
"css": "less"
},
"scripts": {
"build": "taro build --type weapp",
"dev": "taro build --type weapp --watch && taro router-gen",
"prettier": "prettier --write '**/*.{js,jsx,tsx,ts,less,md,json}'",
"prettier:normal": "prettier --write '**/*.{js,jsx,less,md,json}'",
"prettier:x": "prettier --write '**/*.{tsx,ts}'"
},
"browserslist": [
"last 3 versions",
"Android >= 4.1",
"ios >= 8"
],
"gitHooks": {
"pre-commit": "lint-staged --allow-empty"
},
"lint-staged": {
"*.{js,jsx,less,md,json}": [
"prettier --write"
],
"*.ts?(x)": [
"prettier --parser=typescript --write"
]
},
"dependencies": {
"@babel/runtime": "^7.15.3",
"@tarojs/components": "3.3.2",
"@tarojs/react": "3.3.2",
"@tarojs/runtime": "3.3.2",
"@tarojs/taro": "3.3.2",
"ahooks": "^2.10.6",
"dva-core": "^2.0.4",
"dva-immer": "^1.0.0",
"dva-loading": "^3.0.22",
"dva-model-extend": "^0.1.2",
"fast-deep-equal": "^3.1.3",
"lodash-es": "^4.17.21",
"query-string": "^7.0.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-redux": "^7.2.4",
"redux": "^4.1.0",
"taro-ui": "^3.0.0-alpha.10",
"tarojs-router-next": "^2.4.0"
},
"devDependencies": {
"@babel/core": "^7.15.0",
"@tarojs/mini-runner": "3.3.2",
"@tarojs/webpack-runner": "3.3.2",
"@types/lodash-es": "^4.17.4",
"@types/react": "^17.0.17",
"@types/react-redux": "^7.1.18",
"@types/webpack-env": "^1.16.2",
"@types/wechat-miniprogram": "^3.4.0",
"babel-preset-taro": "3.3.2",
"lint-staged": "^11.0.0",
"prettier": "^2.3.0",
"tarojs-router-next-plugin": "^2.4.0",
"typescript": "^4.3.5",
"yorkie": "^2.0.0"
}
}