-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 2.07 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "resart-nextjs",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"tailwind": "npx tailwindcss -i ./src/input.css -o ./dist/output.css --watch",
"prettier": "prettier --write ./app/**/*.{tsx,ts} ./cdk/**/*.ts",
"prettier:watch": "prettier --watch ./app/**/*.{tsx,ts} ./cdk/**/*.ts",
"docker-compose": "docker compose up -d",
"cypress": "CYPRESS_BASE_URL=http://localhost:3000/ cypress open",
"cypress:ci": "CYPRESS_BASE_URL=http://localhost:80/ cypress run",
"create-database": "prisma migrate dev && prisma db seed"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.299.0",
"@aws-sdk/signature-v4-crt": "^3.299.0",
"@headlessui/react": "^1.7.14",
"@next/font": "13.1.6",
"@prisma/client": "4.12.0",
"@svgr/webpack": "^6.5.1",
"@types/cypress": "^1.1.3",
"@types/lodash": "^4.14.194",
"@types/node": "18.13.0",
"@types/react": "18.0.27",
"@types/react-dom": "18.0.10",
"autoprefixer": "^10.4.13",
"aws-sdk": "^2.1368.0",
"classnames": "^2.3.2",
"daisyui": "^2.51.6",
"eslint": "8.33.0",
"eslint-config-next": "13.1.6",
"flowbite": "^1.6.5",
"flowbite-react": "^0.4.4",
"jsonwebtoken": "^9.0.0",
"lodash": "^4.17.21",
"next": "13.4.1",
"next-auth": "^4.22.1",
"postcss": "^8.4.21",
"prettier": "^2.8.7",
"prisma": "^4.11.0",
"react": "18.2.0",
"react-daisyui": "^3.1.2",
"react-dom": "18.2.0",
"react-hook-form": "^7.43.9",
"react-query": "^3.39.3",
"react-slick": "^0.29.0",
"sass": "^1.60.0",
"server-only": "^0.0.1",
"sharp": "^0.31.3",
"swiper": "^9.1.1",
"tailwind-merge": "^1.10.0",
"tailwindcss": "^3.2.6",
"ts-node": "^10.9.1",
"typescript": "4.9.5",
"zod": "^3.21.4"
},
"prisma": {
"seed": "ts-node --compiler-options {\"module\":\"CommonJS\"} prisma/seed.ts"
},
"devDependencies": {
"@types/jsonwebtoken": "^9.0.2",
"@types/react-slick": "^0.23.10",
"cypress": "^12.7.0"
}
}