-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.19 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
{
"author": "tengyuan",
"license": "ISC",
"name": "vite-vue-starter",
"private": true,
"version": "1.0.0",
"main": "index.js",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"prepare": "husky",
"cz": "./node_modules/cz-customizable/standalone.js",
"style": "stylelint \"src/**/*.(vue|scss|css)\" --fix"
},
"dependencies": {
"pinia": "^2.1.7",
"vue": "^3.4.21"
},
"repository": {
"type": "git",
"url": "https://gitee.com/tengtengtengyuan/nfc-social.git"
},
"husky": {
"hooks": {
"commit-msg": ".husky/commit-msg"
}
},
"config": {
"commitizen": {
"path": "node_modules/cz-customizable"
}
},
"devDependencies": {
"@antfu/eslint-config": "0.36.0",
"@commitlint/cli": "^19.2.1",
"@commitlint/config-conventional": "^19.1.0",
"@vitejs/plugin-vue": "^5.0.4",
"cz-customizable": "^7.0.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "8.7.0",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-vue": "^9.22.0",
"husky": "^9.0.11",
"prettier": "^3.2.5",
"sass": "^1.72.0",
"scss-loader": "^0.0.1",
"stylelint": "^16.2.1",
"stylelint-config-standard": "^36.0.0",
"stylelint-order": "^6.0.4",
"vite": "^5.2.0"
}
}