-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 822 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 822 Bytes
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
{
"name": "bitcalc-v2",
"type": "module",
"private": true,
"scripts": {
"build": "nuxt build",
"dev": "nuxt dev",
"generate": "nuxt generate",
"preview": "nuxt preview",
"postinstall": "nuxt prepare",
"test": "vitest",
"test:e2e": "vitest --project e2e",
"test:unit": "vitest --project nuxt"
},
"dependencies": {
"@nuxtjs/tailwindcss": "6.14.0",
"@upstash/redis": "1.37.0",
"bignumber.js": "10.0.2",
"luxon": "3.7.2",
"nuxt": "^4.4.2",
"vue": "^3.5.30",
"vue-router": "^5.0.3"
},
"devDependencies": {
"@nuxt/test-utils": "4.0.0",
"@types/luxon": "3.7.1",
"@vitest/coverage-v8": "4.1.0",
"@vitest/ui": "4.1.0",
"@vue/test-utils": "2.4.6",
"happy-dom": "20.8.9",
"playwright-core": "1.58.2",
"vitest": "4.1.0"
}
}