-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.48 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.48 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
{
"name": "icjia-graphql-playground",
"type": "module",
"private": true,
"scripts": {
"build": "nuxt build && node scripts/generate-csp.mjs",
"dev": "nuxt dev",
"generate": "nuxt generate",
"preview": "nuxt preview",
"postinstall": "nuxt prepare",
"pretest": "node -e \"const v = +process.version.slice(1).split('.')[0]; if (v < 20) { console.error('\\x1b[31mNode 20+ required (found ' + process.version + '). Run: nvm use\\x1b[0m'); process.exit(1) }\"",
"test": "vitest run",
"test:watch": "vitest",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"dependencies": {
"@codemirror/lang-json": "^6.0.2",
"@codemirror/theme-one-dark": "^6.1.3",
"@nuxt/ui": "^4.4.0",
"@nuxtjs/seo": "^3.4.0",
"@pinia/nuxt": "^0.11.3",
"cm6-graphql": "^0.2.1",
"codemirror": "^6.0.2",
"graphql": "^16.12.0",
"nuxt": "^4.3.1",
"pinia": "^3.0.4",
"splitpanes": "^4.0.4",
"tailwindcss": "^4.2.0",
"vue": "^3.5.28",
"vue-router": "^4.6.4"
},
"resolutions": {
"minimatch": ">=10.2.1",
"ajv": "~6.14.0"
},
"devDependencies": {
"@nuxt/eslint": "^1.15.1",
"@nuxt/test-utils": "^4.0.0",
"@types/splitpanes": "^2.2.6",
"@vitejs/plugin-vue": "^6.0.4",
"@vue/test-utils": "^2.4.6",
"eslint": "^10.0.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.5",
"happy-dom": "^20.6.3",
"prettier": "^3.8.1",
"typescript": "^5.9.3",
"vitest": "^4.0.18"
}
}