-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.13 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.13 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
{
"name": "BloodPlus",
"private": true,
"type": "module",
"scripts": {
"build": "nuxt build",
"dev": "nuxt dev",
"preview": "nuxt preview",
"postinstall": "nuxt prepare",
"lint": "eslint . && prettier --check .",
"lint:fix": "eslint . --fix && prettier --write .",
"format": "prettier --write .",
"clean": "rm -rf node_modules .pnpm-store pnpm-lock.yaml dist .nuxt .output .data && pnpm install"
},
"dependencies": {
"@nuxt/content": "^3.7.1",
"@nuxt/image": "^1.11.0",
"@nuxt/ui": "^4.1.0",
"@nuxtjs/leaflet": "1.3.2",
"@vueuse/nuxt": "^13.9.0",
"better-sqlite3": "^12.4.1",
"date-fns": "^4.1.0",
"motion-v": "^1.7.3",
"nuxt": "^4.2.0"
},
"devDependencies": {
"@nuxt/eslint": "^1.9.0",
"eslint": "^9.38.0",
"prettier-plugin-tailwindcss": "^0.7.1",
"typescript": "^5.9.3",
"vue-tsc": "^3.1.2"
},
"packageManager": "pnpm@10.23.0",
"pnpm": {
"onlyBuiltDependencies": [
"better-sqlite3"
],
"ignoredBuiltDependencies": [
"@parcel/watcher",
"esbuild",
"sharp",
"unrs-resolver",
"vue-demi"
]
}
}