-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
39 lines (39 loc) · 932 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
35
36
37
38
39
{
"name": "nuxt-app",
"private": true,
"scripts": {
"build": "nuxt build",
"dev": "nuxt dev",
"generate": "nuxt generate",
"preview": "nuxt preview",
"postinstall": "nuxt prepare",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"dependencies": {
"@jsquash/oxipng": "^2.0.0-rc.0-single-thread-only",
"@jsquash/png": "3.0.0",
"jszip": "^3.10.1",
"p-limit": "^4.0.0",
"sass": "^1.63.6",
"viewerjs": "^1.11.4"
},
"devDependencies": {
"@antfu/eslint-config": "^0.39.8",
"@nuxt/devtools": "latest",
"@nuxt/types": "^2.17.1",
"@nuxt/typescript-build": "^3.0.1",
"@types/node": "^18.16.19",
"eslint": "^8.45.0",
"lint-staged": "^13.2.3",
"nuxt": "^3.6.3",
"simple-git-hooks": "^2.8.1",
"typescript": "^4.9.5"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*": "eslint --fix"
}
}