-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.61 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
42
43
44
45
46
47
48
49
{
"name": "areafiftylan",
"version": "0.1.0",
"description": "Hulde voor de LANDev",
"repository": "[email protected]:AreaFiftyLAN/areafiftylan.git",
"author": "LANDev <[email protected]>",
"type": "module",
"private": true,
"scripts": {
"build": "nuxt build",
"dev": "nuxt dev --no-clear",
"serve": "yarn build && nuxt preview",
"typecheck": "nuxt typecheck",
"lint": "eslint . --ext .ts,.js,.vue,.json --max-warnings 0",
"migrate": "prisma migrate deploy",
"migrate-dev": "prisma migrate dev",
"migrate-reset": "prisma migrate reset",
"postinstall": "nuxt prepare"
},
"prisma": {
"schema": "server/prisma/schema.prisma"
},
"devDependencies": {
"@nuxt/image-edge": "^1.0.0-27840416.dc1ed65",
"@nuxtjs/eslint-config-typescript": "^12.0.0",
"@prisma/client": "^4.6.1",
"@types/node": "^18.11.11",
"@types/validator": "^13.7.10",
"@typescript-eslint/eslint-plugin": "^5.45.1",
"@typescript-eslint/parser": "^5.45.1",
"@vueuse/core": "^9.6.0",
"@vueuse/nuxt": "^9.6.0",
"eslint": "^8.26.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-json": "^3.1.0",
"eslint-plugin-nuxt": "^4.0.0",
"eslint-plugin-prettier": "^4.2.1",
"nuxt": "^3.0.0",
"prettier": "^2.8.1",
"prisma": "^4.6.1",
"sass": "^1.56.1",
"typescript": "^4.9.3",
"vue-eslint-parser": "^9.1.0"
},
"dependencies": {
"superstruct": "^1.0.3",
"validator": "^13.7.0"
}
}