-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
84 lines (84 loc) · 2.61 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
{
"name": "shop",
"version": "0.0.0",
"engines": {
"node": ">=16.0.0",
"pnpm": ">=5.0.0"
},
"packageManager": "pnpm@7.5.1",
"scripts": {
"prepare": "husky install",
"setup:git": "sh ./scripts/setup-git.sh",
"dev:app": "uni -p app",
"dev:custom": "uni -p",
"dev:h5": "uni",
"dev:h5:ssr": "uni --ssr",
"dev:mp-weixin": "uni -p mp-weixin",
"build:app": "uni build -p app",
"build:custom": "uni build -p",
"build:h5": "uni build",
"build:h5:ssr": "uni build --ssr",
"build:mp-weixin": "uni build -p mp-weixin",
"lint": "pnpm lint:eslint && pnpm lint:stylelint",
"lint:fix": "pnpm prettier && pnpm lint:stylelint --fix",
"lint:eslint": "eslint --ext .js,.vue,.tsx,.jsx,.ts src",
"prettier": "prettier --write 'src/**/*.{js,vue,tsx,jsx,ts}'",
"lint:stylelint": "stylelint 'src/*.{css,scss,sass,less}'",
"inject:env": "sh ./scripts/inject-env.sh"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -e $HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"*.{js,vue,tsx,jsx,ts}": "pnpm lint:eslint --fix"
},
"dependencies": {
"@dcloudio/uni-app": "3.0.0-alpha-3050220220719002",
"@dcloudio/uni-app-plus": "3.0.0-alpha-3050220220719002",
"@dcloudio/uni-components": "3.0.0-alpha-3050220220719002",
"@dcloudio/uni-h5": "3.0.0-alpha-3050220220719002",
"@dcloudio/uni-mp-weixin": "3.0.0-alpha-3050220220719002",
"@dcloudio/uni-ui": "^1.4.19",
"axios": "^0.27.2",
"nanoid": "^4.0.0",
"pinia": "^2.0.16",
"vue": "^3.2.37",
"vue-i18n": "^9.1.9",
"vuex": "^4.0.2"
},
"devDependencies": {
"@commitlint/cli": "^17.0.3",
"@commitlint/config-conventional": "^17.0.3",
"@dcloudio/types": "^3.0.7",
"@dcloudio/uni-automator": "3.0.0-alpha-3050220220719002",
"@dcloudio/uni-cli-shared": "3.0.0-alpha-3050220220719002",
"@dcloudio/vite-plugin-uni": "3.0.0-alpha-3050220220719002",
"@typescript-eslint/eslint-plugin": "^5.30.6",
"@typescript-eslint/parser": "^5.30.6",
"eslint": "^7.32.0 || ^8.2.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-import-alias": "^1.2.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-vue": "^9.2.0",
"fundebug-javascript": "^2.8.6",
"fundebug-vue": "^0.3.6",
"husky": "^8.0.1",
"less": "^4.1.3",
"lint-staged": "^13.0.3",
"postcss-less": "^6.0.0",
"prettier": "^2.7.1",
"sass": "^1.53.0",
"sass-loader": "10.1.1",
"stylelint": "^14.9.1",
"stylelint-config-recommended-less": "^1.0.4",
"stylelint-config-recommended-vue": "^1.4.0",
"stylelint-config-standard": "^26.0.0",
"stylelint-less": "^1.0.6",
"typescript": "^4.7.4",
"vite": "^2.9.14"
}
}