-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.43 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
{
"name": "learn-photo-swipe",
"type": "module",
"version": "0.0.0",
"private": true,
"author": {
"name": "眼圈发黑",
"email": "1449826851@qq.com"
},
"license": "MIT",
"homepage": "https://github.com/yanquanfahei/learn-photo-swipe#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/yanquanfahei/learn-photo-swipe.git"
},
"bugs": "https://github.com/yanquanfahei/learn-photo-swipe/issues",
"scripts": {
"dev": "vite",
"build": "vue-tsc && vite build",
"preview": "vite preview",
"lint": "eslint --fix",
"postinstall": "npx simple-git-hooks",
"test": "vitest",
"test:e2e": "cypress open"
},
"dependencies": {
"pinia": "^2.0.33",
"vue": "^3.2.45",
"vue-router": "4"
},
"devDependencies": {
"@eye-socket/eslint-config-vue": "^0.0.4",
"@eye-socket/stylelint-config": "^0.0.1",
"@types/node": "^18.15.0",
"@vitejs/plugin-vue": "^4.0.0",
"chalk": "^5.2.0",
"cypress": "^12.7.0",
"eslint": "^8.36.0",
"less": "^4.1.3",
"lint-staged": "^13.2.0",
"prettier": "^2.8.7",
"simple-git-hooks": "^2.8.1",
"stylelint": "^15.3.0",
"typescript": "^4.9.3",
"vite": "^4.1.0",
"vitest": "^0.29.2",
"vue-tsc": "^1.0.24"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged",
"commit-msg": "node scripts/verify-commit.js"
},
"lint-staged": {
"*.{ts,js,json,json5,vue}": "eslint --fix"
}
}