-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.03 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
{
"name": "clonex-explorer",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "prisma generate && next build",
"start": "next start",
"lint": "next lint",
"studio": "prisma studio"
},
"prisma": {
"seed": "ts-node --compiler-options {\"module\":\"CommonJS\"} prisma/seed.ts"
},
"dependencies": {
"@apollo/client": "^3.8.0-rc.2",
"@apollo/experimental-nextjs-app-support": "^0.5.2",
"@prisma/client": "^5.6.0",
"graphql": "^16.8.1",
"gsap": "^3.12.2",
"lodash.debounce": "^4.0.8",
"next": "14.0.3",
"react": "^18",
"react-dom": "^18",
"react-loading-skeleton": "^3.3.1",
"styled-components": "^6.1.1",
"uuid": "^9.0.1"
},
"devDependencies": {
"@types/lodash.debounce": "^4.0.9",
"@types/node": "^20.10.3",
"@types/react": "^18",
"@types/react-dom": "^18",
"@types/uuid": "^9.0.7",
"eslint": "^8",
"eslint-config-next": "14.0.3",
"prisma": "^5.6.0",
"ts-node": "^10.9.1",
"typescript": "^5.3.2"
}
}