generated from JiatLn/vvtt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.46 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
{
"name": "game-of-life",
"type": "module",
"version": "0.0.0",
"description": "Game of Life",
"author": {
"name": "JiatLn",
"email": "lne128gene980@163.com"
},
"license": "MIT",
"scripts": {
"dev": "vite",
"build": "vite build",
"typecheck": "vue-tsc --noEmit",
"preview": "vite build && vite preview",
"prepare": "husky install",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"dependencies": {
"@unocss/reset": "^0.45.21",
"@vueuse/core": "^9.2.0",
"dayjs": "^1.11.5",
"lodash-es": "^4.17.21",
"pinia": "^2.0.22",
"pinia-plugin-keep": "^0.3.0",
"unocss": "^0.45.21",
"vue": "^3.2.39",
"vue-router": "4"
},
"devDependencies": {
"@antfu/eslint-config": "^0.27.0",
"@iconify/json": "^2.1.107",
"@types/lodash-es": "^4.17.6",
"@types/node": "^18.7.18",
"@vitejs/plugin-vue": "^3.1.0",
"@vitejs/plugin-vue-jsx": "^2.0.1",
"@vue/babel-plugin-jsx": "^1.1.1",
"eslint": "^8.23.1",
"husky": "^8.0.1",
"less": "^4.1.3",
"lint-staged": "^13.0.3",
"terser": "^5.15.0",
"typescript": "^4.8.3",
"unplugin-auto-import": "^0.11.2",
"unplugin-vue-components": "^0.22.7",
"vite": "^3.1.3",
"vite-plugin-injection": "^0.1.1",
"vue-tsc": "^0.40.13"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.js": "eslint",
"src/**/*.ts": "eslint",
"src/**/*.vue": "eslint"
}
}