-
Notifications
You must be signed in to change notification settings - Fork 279
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.25 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 1.25 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
{
"name": "nuxt-hn",
"type": "module",
"private": true,
"devEngines": {
"runtime": {
"name": "node",
"version": "^24.0.0",
"onFail": "warn"
},
"packageManager": {
"name": "pnpm",
"version": "12.3.4",
"onFail": "warn"
}
},
"description": "Nuxt Hacker News",
"author": "Evan You <yyx990803@gmail.com>",
"contributors": [
{
"name": "Sebastien Chopin (@Atinux)"
},
{
"name": "Pooya Parsa (@pi0)"
},
{
"name": "Anthony Fu (@antfu)"
}
],
"scripts": {
"dev": "nuxt dev",
"build": "nuxt build",
"start": "nuxt start",
"lint": "eslint .",
"postinstall": "nuxt prepare",
"test": "vitest run",
"test:unit": "vitest run --project unit",
"test:nuxt": "vitest run --project nuxt",
"test:e2e": "vitest run --project e2e"
},
"devDependencies": {
"@nuxt/devtools": "^3.4.2",
"@nuxt/eslint": "^1.17.0",
"@nuxt/eslint-config": "^1.17.0",
"@nuxt/test-utils": "^4.3.2",
"@nuxthub/core": "^0.10.8",
"@types/node": "^24.13.6",
"@vue/test-utils": "^2.5.1",
"eslint": "^10.11.0",
"happy-dom": "^20.14.5",
"nuxt": "^4.5.2",
"postcss-nesting": "^14.0.1",
"typescript": "^5.9.3",
"vitest": "^5.0.1"
}
}