-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.63 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": "red4",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"prod": "next export",
"start": "next start",
"lint": "next lint",
"scripts:build": "tsc --project ./tsconfig.script.json",
"db:seed": "npx prisma db seed",
"db:update-views": "dotenv -e .env -- sh scripts/update-views.sh",
"db:update": "dotenv -e .env -- sh scripts/update-db.sh",
"test": "dotenv -e .env.test -- jest --watch",
"db-test:update": "dotenv -e .env.test -- sh scripts/update-db.sh"
},
"prisma": {
"seed": "node prisma/seed.js"
},
"dependencies": {
"@datastructures-js/heap": "^4.1.2",
"@headlessui/react": "^1.7.3",
"@prisma/client": "^4.6.1",
"axios": "^1.1.3",
"ioredis": "^5.2.3",
"mux.js": "^6.2.0",
"next": "12.3.1",
"next-auth": "^4.14.0",
"random-word-slugs": "^0.1.6",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-icons": "^4.6.0",
"react-twitter-embed": "^4.0.4",
"uuid": "^9.0.0",
"zod": "^3.19.1"
},
"devDependencies": {
"@next/bundle-analyzer": "^13.0.3",
"@svgr/webpack": "^6.5.0",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@types/node": "^18.11.0",
"@types/react": "18.0.21",
"@types/react-dom": "18.0.6",
"autoprefixer": "^10.4.12",
"eslint": "8.25.0",
"eslint-config-next": "12.3.1",
"jest": "^29.3.1",
"jest-environment-jsdom": "^29.3.1",
"postcss": "^8.4.18",
"prisma": "^4.6.1",
"tailwindcss": "^3.2.0",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.1.0",
"typescript": "^4.8.4"
}
}