-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.42 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
{
"name": "dev-project",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"generate": "yarn generate:prisma && yarn generate:nexus",
"generate:prisma": "prisma generate",
"generate:nexus": "ts-node --transpile-only -P nexus.tsconfig.json pages/api",
"ts-node": "ts-node --compiler-options \"{\\\"module\\\":\\\"commonjs\\\"}\""
},
"dependencies": {
"@apollo/client": "^3.6.9",
"@prisma/client": "^4.3.1",
"@tailwindcss/forms": "^0.5.3",
"@tailwindcss/line-clamp": "^0.4.2",
"apollo-server-micro": "^3.10.2",
"dayjs": "^1.11.5",
"ethers": "^5.7.1",
"express": "^4.18.1",
"graphql": "^16.6.0",
"graphql-scalars": "^1.18.0",
"graphql-tag": "^2.12.6",
"micro": "^9.4.1",
"micro-cors": "^0.1.1",
"next": "12.2.5",
"nexus": "^1.3.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"seedrandom": "^3.0.5",
"unique-names-generator": "^4.7.1"
},
"devDependencies": {
"@types/micro-cors": "^0.1.2",
"@types/node": "18.7.15",
"@types/react": "18.0.18",
"@types/react-dom": "18.0.6",
"autoprefixer": "^10.4.8",
"eslint": "8.23.0",
"eslint-config-next": "12.2.5",
"postcss": "^8.4.16",
"prisma": "^4.3.1",
"tailwindcss": "^3.1.8",
"typescript": "4.8.2"
},
"prisma": {
"seed": "ts-node prisma/seed.ts"
}
}