-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.15 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
{
"name": "2023hp",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build && next export",
"start": "next start",
"lint": "next lint",
"fmt": "npx eslint --fix --ext .jsx,.js,.tsx,.ts .",
"vercel-build": "next build"
},
"prisma": {
"seed": "ts-node prisma/seed.ts"
},
"dependencies": {
"@prisma/client": "^5.4.2",
"@typescript-eslint/eslint-plugin": "^6.7.4",
"@vercel/postgres": "^0.5.0",
"axios": "^1.5.1",
"eslint-plugin-import": "^2.29.0",
"framer-motion": "^10.16.4",
"next": "13.5.4",
"react": "^18",
"react-calendar-timeline": "^0.28.0",
"react-device-detect": "^2.2.3",
"react-dom": "^18",
"react-intersection-observer": "^9.5.2",
"styled-components": "^6.0.8"
},
"devDependencies": {
"@types/node": "^20",
"@types/react": "^18",
"@types/react-calendar-timeline": "^0.28.3",
"@types/react-dom": "^18",
"eslint": "^8.52.0",
"eslint-config-next": "13.5.4",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-unused-imports": "^3.0.0",
"prettier": "^3.0.3",
"prisma": "^5.4.2",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
}
}