-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 846 Bytes
/
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
{
"name": "100-toys",
"type": "module",
"private": true,
"scripts": {
"dev": "nuxt dev --host",
"build": "nuxt build",
"generate": "nuxt generate",
"preview": "nuxt preview",
"typecheck": "tsc --noEmit",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"postinstall": "nuxt prepare && simple-git-hooks"
},
"devDependencies": {
"@iconify-json/carbon": "^1.1.21",
"@iconify-json/ri": "^1.1.12",
"@nuxt/devtools": "latest",
"@toryz/eslint-config": "^0.1.4",
"@unocss/nuxt": "^0.55.7",
"d": "^1.0.1",
"eslint": "^8.49.0",
"lint-staged": "^14.0.1",
"nuxt": "^3.7.3",
"simple-git-hooks": "^2.9.0"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged",
"commit-msg": "node scripts/verifyCommit.js"
},
"lint-staged": {
"*": "eslint --fix"
}
}