-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.27 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.27 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
48
49
50
51
52
53
54
{
"name": "snapmark",
"type": "module",
"private": true,
"scripts": {
"build": "nuxt build",
"dev": "nuxt dev",
"test": "vitest --run",
"test:watch": "vitest",
"generate": "nuxt generate",
"preview": "nuxt preview",
"typecheck": "nuxt typecheck",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"postinstall": "nuxt prepare && simple-git-hooks"
},
"dependencies": {
"@nuxt/image": "2.0.0",
"@nuxt/ui": "4.6.1",
"@nuxtjs/i18n": "10.2.1",
"deepmerge": "^4.3.1",
"modern-screenshot": "4.6.7",
"nuxt": "4.4.2",
"valibot": "1.2.0",
"vue": "3.5.29",
"vue-advanced-cropper": "2.8.9",
"vue-router": "5.0.4"
},
"devDependencies": {
"@nuxt/eslint": "1.15.2",
"@nuxt/hints": "1.0.3",
"@nuxt/test-utils": "3.23.0",
"@pinia/nuxt": "0.11.3",
"@vue/test-utils": "2.4.6",
"@vueuse/core": "14.2.1",
"@vueuse/nuxt": "14.2.1",
"eslint": "9.39.3",
"happy-dom": "20.7.0",
"lint-staged": "16.3.1",
"playwright-core": "1.58.2",
"simple-git-hooks": "2.13.1",
"typescript": "5.9.3",
"vitest": "4.0.18"
},
"resolutions": {
"css-tree": "2.2.1"
},
"simple-git-hooks": {
"pre-commit": "bun lint-staged"
},
"lint-staged": {
"*": "bun lint:fix"
}
}