-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.06 KB
/
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
40
41
{
"name": "yet-another-tonestack-calculator",
"description": "Browser-based tonestack calculator",
"private": true,
"type": "module",
"scripts": {
"prebuild": "npm run optimize-schematics",
"build": "nuxt build",
"predev": "npm run optimize-schematics",
"dev": "nuxt dev",
"pregenerate": "npm run optimize-schematics",
"generate": "nuxt generate",
"preview": "nuxt preview",
"postinstall": "nuxt prepare",
"test": "vitest",
"optimize-schematics": "node scripts/optimize-schematics.js"
},
"dependencies": {
"@jsonjoy.com/json-pack": "^1.1.0",
"@nuxtjs/fontaine": "^0.4.3",
"@nuxtjs/tailwindcss": "^6.12.1",
"echarts": "^5.5.1",
"fft.js": "^4.0.4",
"nuxt": "^3.13.0",
"pako": "^2.1.0",
"vue": "latest",
"vue-router": "latest"
},
"devDependencies": {
"@nuxt/test-utils": "^3.14.2",
"@nuxt/types": "^2.18.1",
"@types/node": "^22.5.4",
"happy-dom": "^15.7.4",
"svgo": "^3.3.2",
"typescript": "^5.6.2",
"vitest": "^2.1.1"
},
"overrides": {
"vue": "latest"
}
}