-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.33 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.33 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
{
"name": "nuxt-app",
"private": true,
"type": "module",
"scripts": {
"build": "nuxt build",
"dev": "nuxt dev",
"generate": "nuxt generate",
"preview": "nuxt preview",
"postinstall": "nuxt prepare",
"lint": "eslint .",
"format": "prettier --write .",
"prepare": "husky install",
"test": "echo \"No tests yet\" && exit 0"
},
"dependencies": {
"@nuxt/eslint": "^1.4.1",
"@nuxt/fonts": "^0.11.4",
"@nuxt/icon": "^1.15.0",
"@nuxt/image": "^1.10.0",
"@nuxt/scripts": "^0.11.8",
"@nuxt/test-utils": "^3.19.1",
"@nuxt/ui": "^3.2.0",
"@prisma/cli-init": "^0.4.0",
"@prisma/client": "^6.11.0",
"@unhead/vue": "^2.0.11",
"bcrypt": "^6.0.0",
"eslint": "^9.30.0",
"nuxt": "^3.17.5",
"pg": "^8.16.3",
"typescript": "^5.8.3",
"vue": "^3.5.17",
"vue-router": "^4.5.1"
},
"devDependencies": {
"@nuxtjs/supabase": "^1.5.3",
"@types/bcrypt": "^5.0.2",
"@types/pg": "^8.15.4",
"husky": "^8.0.3",
"lint-staged": "^16.1.2",
"prisma": "^6.11.0"
},
"lint-staged": {
"**/*.{js,ts,vue}": "eslint --max-warnings=0"
},
"description": "Look at the [Nuxt documentation](https://nuxt.com/docs/getting-started/introduction) to learn more.",
"version": "1.0.0",
"main": "index.js",
"keywords": [],
"author": "",
"license": "ISC"
}