This repository has been archived by the owner on Sep 24, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.55 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
50
51
52
{
"name": "mijn-proteus",
"version": "0.1.0",
"description": "",
"repository": "[email protected]:Proteus-Eretes/mijn-proteus.git",
"author": "WebCie <[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",
"seed": "prisma db seed",
"postinstall": "nuxt prepare",
"prettier": "prettier --write ."
},
"prisma": {
"schema": "server/prisma/schema.prisma"
},
"devDependencies": {
"@nuxtjs/eslint-config-typescript": "^11.0.0",
"@nuxtjs/tailwindcss": "^6.1.3",
"@prisma/client": "^4.6.1",
"@types/node": "^18.11.9",
"@types/validator": "^13.7.10",
"@typescript-eslint/eslint-plugin": "^5.42.0",
"@typescript-eslint/parser": "^5.42.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",
"nuxt-icon": "^0.1.7",
"postcss-custom-properties": "^13.0.0",
"prettier": "^2.7.1",
"prisma": "^4.6.1",
"typescript": "^4.8.4",
"vue-eslint-parser": "^9.1.0"
},
"dependencies": {
"@sidebase/nuxt-auth": "^0.3.0-alpha.1",
"daisyui": "^2.38.0",
"superstruct": "^1.0.3",
"validator": "^13.7.0"
}
}