-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
50 lines (50 loc) · 1.47 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
{
"private": true,
"scripts": {
"build": "nuxt build",
"dev": "nuxt dev --trace-warnings",
"generate": "nuxt generate",
"preview": "nuxt preview",
"docker:up": "docker-compose up -d",
"docker:down": "docker-compose down",
"test": "yarn docker:up && yarn prisma migrate deploy && vitest",
"ci:test": "yarn prisma migrate deploy && vitest",
"prisma:generate": "dotenv -e .env -- npx prisma generate",
"prisma:migrate": "dotenv -e .env -- npx prisma migrate deploy --name prod"
},
"devDependencies": {
"@nuxt/content": "^2.9.0",
"@nuxt/postcss8": "^1.1.3",
"@nuxt/test-utils-edge": "3.8.0-28284309.b3d3d7f4",
"@nuxtjs/color-mode": "^3.3.0",
"@nuxtjs/tailwindcss": "^6.9.4",
"@types/bcrypt": "^5.0.2",
"@types/uuid": "^9.0.7",
"autoprefixer": "^10.4.16",
"jsdom": "^22.1.0",
"nuxt": "^3.8.1",
"nuxt-icon": "^0.6.5",
"postcss": "^8.4.31",
"tailwindcss": "^3.3.5",
"vitest": "^0.34.6"
},
"dependencies": {
"@formkit/auto-animate": "^0.8.1",
"@prisma/client": "^5.5.2",
"@sidebase/nuxt-parse": "^0.3.0",
"@tailwindcss/aspect-ratio": "^0.4.2",
"@tailwindcss/typography": "^0.5.10",
"@vueuse/core": "^10.6.0",
"bcrypt": "^5.1.1",
"dotenv-cli": "^7.3.0",
"nuxt-mailer": "^0.11.0",
"nuxt-scheduler": "^0.1.9",
"prisma": "^5.5.2",
"stripe": "^14.4.0",
"uuid": "^9.0.1",
"zod": "^3.21.0"
},
"prisma": {
"schema": "server/database/schema.prisma"
}
}