-
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.65 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.65 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
55
56
57
{
"name": "dev-mode",
"license": "MIT",
"private": true,
"type": "module",
"author": {
"name": "Daniel Roe",
"email": "daniel@roe.dev",
"url": "https://roe.dev"
},
"scripts": {
"build": "nuxt build",
"dev": "nuxt dev",
"lint": "eslint .",
"generate": "nuxt generate",
"preview": "nuxt preview",
"postinstall": "nuxt prepare && simple-git-hooks",
"test:types": "vue-tsc --noEmit",
"test:unit": "vitest",
"test:nuxt": "vitest -c vitest.nuxt.config.ts",
"test:browser": "playwright test test/browser",
"test:browser:update": "docker run --rm --network host -v $(pwd):/work/ -v /tmp/playwright-node-modules:/work/node_modules -w /work/ -it mcr.microsoft.com/playwright:v1.51.1-noble bash -c 'corepack enable && pnpm i && pnpm playwright test test/browser --update-snapshots'"
},
"dependencies": {
"@nuxt/eslint": "^1.3.0",
"@nuxt/scripts": "^0.11.5",
"@nuxtjs/html-validator": "^2.1.0",
"@vueuse/nuxt": "14.0.0",
"@vueuse/sound": "^2.1.3",
"nuxt": "^3.16.1",
"nuxt-og-image": "^5.1.1",
"unplugin-vue-router": "^0.12.0",
"vue": "^3.5.0",
"vue-sonner": "^2.0.0"
},
"devDependencies": {
"@nuxt/test-utils": "3.21.0",
"@playwright/test": "1.52.0",
"@vue/test-utils": "2.4.6",
"eslint": "9.39.2",
"happy-dom": "20.0.11",
"nano-staged": "^0.9.0",
"simple-git-hooks": "2.13.0",
"typescript": "5.8.3",
"vitest": "4.0.15",
"vue-tsc": "3.0.1"
},
"simple-git-hooks": {
"pre-commit": "npx nano-staged"
},
"packageManager": "pnpm@10.21.0",
"nano-staged": {
"*.{js,ts,mjs,cjs,json,.*rc}": [
"npx eslint --fix"
]
}
}