-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
108 lines (108 loc) · 3.15 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
{
"name": "taro3-vue3-template",
"version": "1.0.0",
"private": true,
"description": "taro3-vue3-template",
"templateInfo": {
"name": "default",
"typescript": true,
"css": "sass"
},
"scripts": {
"dev": "pnpm run build --watch",
"dev:prod": "NODE_ENV=production pnpm run build --watch",
"build": "taro build --type weapp",
"build:master": "pnpm run build --mode master",
"dev:h5": "pnpm run build:h5 --watch",
"build:h5": "taro build --type h5",
"preview:h5": "serve -s dist",
"type:check": "tsc --noEmit",
"lint": "eslint --fix .",
"api": "tsg -c ./src/api/tsg.config.ts",
"postinstall": "simple-git-hooks && weapp-tw patch"
},
"dependencies": {
"@abraham/reflection": "^0.12.0",
"@babel/runtime": "^7.23.5",
"@nutui/nutui-taro": "^4.2.3",
"@tarojs/components": "3.6.20",
"@tarojs/helper": "3.6.20",
"@tarojs/plugin-framework-vue3": "3.6.20",
"@tarojs/plugin-html": "3.6.20",
"@tarojs/plugin-platform-h5": "^3.6.20",
"@tarojs/plugin-platform-weapp": "3.6.20",
"@tarojs/runtime": "3.6.20",
"@tarojs/shared": "3.6.20",
"@tarojs/taro": "3.6.20",
"@vue3-oop/taro-hooks": "^1.0.1",
"axios": "^1.6.2",
"injection-js": "^2.4.0",
"path-to-regexp": "^6.2.1",
"ts-essentials": "^9.4.1",
"tslib": "^2.6.2",
"vue": "^3.3.9",
"vue3-oop": "^1.0.6"
},
"devDependencies": {
"@babel/core": "^7.23.5",
"@commitlint/cli": "^18.4.3",
"@commitlint/config-conventional": "^18.4.3",
"@tarojs/cli": "^3.6.20",
"@tarojs/plugin-http": "^3.6.20",
"@tarojs/plugin-mock": "^0.0.9",
"@tarojs/webpack5-runner": "3.6.20",
"@types/lodash": "^4.14.202",
"@types/node": "^20.10.1",
"@types/webpack-env": "^1.18.4",
"@typescript-eslint/eslint-plugin": "^6.13.1",
"@typescript-eslint/parser": "^6.13.1",
"@vue/babel-plugin-jsx": "^1.1.5",
"@vue/compiler-sfc": "^3.3.9",
"@vue3-oop/taro-plugin": "^1.0.5",
"babel-plugin-import": "^1.13.8",
"babel-preset-taro": "3.6.20",
"cross-env": "^7.0.3",
"css-loader": "6.8.1",
"eslint": "~8.54.0",
"eslint-config-prettier": "^8.9.0",
"eslint-config-taro": "3.6.20",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-vue": "^9.19.2",
"lint-staged": "^15.1.0",
"lodash": "^4.17.21",
"postcss": "^8.4.31",
"postcss-preset-env": "^9.3.0",
"prettier": "^2.8.8",
"prettier-plugin-tailwindcss": "^0.4.1",
"serve": "^14.2.1",
"simple-git-hooks": "^2.9.0",
"style-loader": "3.3.3",
"swagger-schema-official": "2.0.0-bab6bed",
"tailwindcss": "~3.3.5",
"tailwindcss-rem2px-preset": "^1.0.3",
"ts-gear": "^4.11.7",
"ts-node": "^10.9.1",
"typescript": "^5.3.2",
"vite": "^4.4.9",
"vue-loader": "^17.3.1",
"weapp-tailwindcss": "^3.0.3",
"webpack": "^5.89.0"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"simple-git-hooks": {
"pre-commit": "pnpm exec lint-staged",
"commit-msg": "pnpm exec commitlint -e \"$@\""
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint --fix"
],
"*.{css,scss,html,json}": [
"prettier --write"
]
}
}