-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.16 KB
/
Copy pathpackage.json
File metadata and controls
47 lines (47 loc) · 1.16 KB
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
{
"name": "game-push-box",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"preinstall": "npx only-allow pnpm",
"postinstall": "simple-git-hooks",
"commit": "git-cz",
"commit:origin": "git pull && git add . && git-cz && git push",
"lint": "prettier --write \"**/*.{js,ts,json,vue,md}\"",
"lint-staged": "lint-staged",
"dev": "vite",
"build": "vue-tsc && vite build",
"preview": "vite preview",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/node": "^18.13.0",
"@unocss/reset": "^0.49.4",
"@vitejs/plugin-vue": "^4.0.0",
"git-cz": "^4.9.0",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"simple-git-hooks": "^2.8.0",
"typescript": "^4.9.3",
"unocss": "^0.49.4",
"unplugin-auto-import": "^0.14.3",
"vite": "^4.1.0",
"vue-tsc": "^1.0.24"
},
"dependencies": {
"@vueuse/core": "^9.12.0",
"vue": "^3.2.45"
},
"simple-git-hooks": {
"pre-commit": "npm run lint-staged"
},
"lint-staged": {
"*": [
"prettier --write --ignore-unknown"
]
}
}