-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
88 lines (88 loc) · 2.99 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
{
"name": "taro3-vue3-pinia",
"version": "1.0.2",
"private": true,
"scripts": {
"build:weapp": "taro build --type weapp",
"build:swan": "taro build --type swan",
"build:alipay": "taro build --type alipay",
"build:tt": "taro build --type tt",
"build:h5": "taro build --type h5",
"build:rn": "taro build --type rn",
"build:qq": "taro build --type qq",
"build:jd": "taro build --type jd",
"build:quickapp": "taro build --type quickapp",
"dev:weapp": "npm run build:weapp -- --watch --env production",
"dev:swan": "npm run build:swan -- --watch",
"dev:alipay": "npm run build:alipay -- --watch",
"dev:tt": "npm run build:tt -- --watch",
"dev:h5": "npm run build:h5 -- --watch",
"dev:rn": "npm run build:rn -- --watch",
"dev:qq": "npm run build:qq -- --watch",
"dev:jd": "npm run build:jd -- --watch",
"dev:quickapp": "npm run build:quickapp -- --watch",
"tsx": "tsx",
"format": "soy prettier --write",
"cleanup": "soy cleanup",
"commit": "git pull && pnpm format && pnpm lint && git add -A && soy git-commit && git push",
"lint": "eslint . --fix",
"prepare": "simple-git-hooks",
"release": "soy release",
"typecheck": "vue-tsc --noEmit --skipLibCheck",
"update-pkg": "soy update-pkg"
},
"dependencies": {
"@babel/runtime": "^7.23.6",
"@nutui/nutui-taro": "^4.2.6",
"@tarojs/cli": "3.6.21",
"@tarojs/components": "3.6.21",
"@tarojs/helper": "3.6.21",
"@tarojs/plugin-html": "3.6.21",
"@tarojs/plugin-platform-alipay": "3.6.21",
"@tarojs/plugin-platform-h5": "3.6.21",
"@tarojs/plugin-platform-jd": "3.6.21",
"@tarojs/plugin-platform-qq": "3.6.21",
"@tarojs/plugin-platform-swan": "3.6.21",
"@tarojs/plugin-platform-tt": "3.6.21",
"@tarojs/plugin-platform-weapp": "3.6.21",
"@tarojs/runtime": "3.6.21",
"@tarojs/shared": "3.6.21",
"@tarojs/taro": "3.6.21",
"@tarojs/webpack5-runner": "3.6.21",
"@vueuse/core": "^10.7.0",
"lodash-es": "^4.17.21",
"pinia": "^2.1.7",
"qs": "^6.11.2",
"vue": "^3.3.13"
},
"devDependencies": {
"@babel/core": "^7.23.6",
"@iconify/json": "^2.2.161",
"@iconify/utils": "^2.1.13",
"@soybeanjs/cli": "1.0.0-beta.7",
"@tarojs/plugin-framework-vue3": "3.6.21",
"@types/lodash-es": "^4.17.12",
"@types/node": "^20.10.5",
"@types/qs": "^6.9.11",
"@types/webpack-env": "^1.18.4",
"@unocss/webpack": "^0.58.0",
"@vue/babel-plugin-jsx": "^1.1.5",
"babel-preset-taro": "3.6.21",
"eslint": "^8.56.0",
"eslint-config-soybeanjs": "0.5.8",
"simple-git-hooks": "^2.9.0",
"taro-plugin-pinia": "^1.0.0",
"tsx": "^4.7.0",
"typescript": "5.3.3",
"unocss": "^0.58.0",
"unocss-preset-weapp": "^0.58.0",
"unplugin-vue-components": "^0.26.0",
"vue-loader": "^17.4.0",
"vue-tsc": "^1.8.27",
"webpack": "^5.89.0"
},
"simple-git-hooks": {
"commit-msg": "pnpm soy git-commit-verify",
"pre-commit": "pnpm typecheck && pnpm soy lint-staged"
}
}