-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.65 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
{
"name": "filmlist",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test": "vitest",
"test:e2e:dev": "cypress open",
"test:e2e:run": "cypress run",
"db:reset": "npx prisma migrate reset --force",
"db:push": "npx prisma db push",
"db:seed": "node prisma/seed.js",
"postinstall": "npx prisma generate"
},
"dependencies": {
"@ant-design/icons": "^5.0.1",
"@prisma/client": "^5.19.1",
"@supabase/supabase-js": "^2.8.0",
"clsx": "^1.2.1",
"immer": "^9.0.19",
"jotai": "^2.0.2",
"jsonwebtoken": "^9.0.0",
"magic-regexp": "^0.6.3",
"nanoid": "^4.0.1",
"next": "^13.3.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-transition-group": "^4.4.5",
"swr": "^2.0.3",
"usehooks-ts": "^2.9.1",
"zod": "^3.20.6",
"zustand": "^4.3.3"
},
"devDependencies": {
"@testing-library/react": "^14.0.0",
"@types/jsonwebtoken": "^9.0.1",
"@types/node": "18.14.0",
"@types/react": "18.0.28",
"@types/react-dom": "18.0.11",
"@types/react-transition-group": "^4.4.5",
"@vitejs/plugin-react": "^3.1.0",
"autoprefixer": "^10.4.13",
"cypress": "^12.9.0",
"eslint": "8.34.0",
"eslint-config-next": "^13.3.0",
"eslint-plugin-cypress": "^2.13.2",
"jsdom": "^21.1.1",
"node-mocks-http": "^1.12.2",
"postcss": "^8.4.21",
"prettier": "^2.8.4",
"prettier-plugin-tailwindcss": "^0.2.3",
"prisma": "^5.19.1",
"tailwindcss": "^3.2.7",
"typescript": "4.9.5",
"vitest": "^0.29.8",
"vitest-mock-extended": "^1.1.3"
}
}