-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
58 lines (58 loc) · 1.92 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
{
"name": "nextjs-boilerplate",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"migrate": "npx prisma migrate dev --skip-seed",
"up": "docker-compose -f docker-compose.yml up -d && docker-compose logs -f",
"down": "docker-compose -f docker-compose.yml down",
"devtest": "NODE_ENV=test && next dev",
"jest": "NODE_ENV=test jest --config=test/jest/jest.config.ts --runInBand --forceExit --verbose",
"cypress:open": "cypress open --config-file test/cypress/cypress.config.ts",
"cypress": "cypress run --config-file test/cypress/cypress.config.ts",
"seed": "ts-node ./prisma/seed.ts",
"unseed": "ts-node ./prisma/unseed.ts"
},
"dependencies": {
"@next-auth/prisma-adapter": "^1.0.7",
"@prisma/client": "^5.6.0",
"@reduxjs/toolkit": "^1.9.7",
"@supabase/supabase-js": "^2.39.0",
"@tailwindcss/typography": "^0.5.10",
"@types/bcrypt": "^5.0.2",
"@types/jest": "^29.5.10",
"@types/react": "^18.2.39",
"@types/react-dom": "^18.2.17",
"@types/validator": "^13.11.7",
"@typescript-eslint/eslint-plugin": "^5.13.0",
"@typescript-eslint/parser": "^5.13.0",
"autoprefixer": "^10.4.16",
"bcrypt": "^5.1.1",
"cypress": "^13.6.0",
"daisyui": "^4.4.14",
"eslint": "^8.54.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-config-next": "^14.0.3",
"jest": "^29.7.0",
"next": "^14.0.3",
"next-auth": "^4.24.5",
"node-mocks-http": "^1.13.0",
"postcss": "^8.4.31",
"prisma": "^5.6.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.48.2",
"react-redux": "^8.1.3",
"tailwindcss": "^3.3.5",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.3.2",
"unique-names-generator": "^4.7.1",
"validator": "^13.11.0"
}
}