-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 1.99 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
62
63
64
65
66
67
68
69
70
71
{
"name": "hello-next",
"version": "1.0.0",
"description": "",
"keywords": [],
"license": "MIT",
"author": "",
"scripts": {
"dev": "next",
"prebuild": "npm run generate",
"build": "next build",
"start": "next start",
"generate": "npm -s run generate:prisma && npm -s run generate:nexus",
"generate:prisma": "prisma generate",
"ts-node": "ts-node --compiler-options \"{\\\"module\\\":\\\"commonjs\\\"}\"",
"generate:nexus": "ts-node --transpile-only -P nexus.tsconfig.json pages/api",
"lint": "next lint",
"prettier": "prettier . --write"
},
"dependencies": {
"@apollo/client": "3.5.10",
"@googlemaps/google-maps-services-js": "^3.3.12",
"@headlessui/react": "^1.5.0",
"@heroicons/react": "^1.0.6",
"@next-auth/prisma-adapter": "^1.0.3",
"@prisma/client": "3.11.1",
"@tailwindcss/forms": "0.5.0",
"@tailwindcss/typography": "0.5.2",
"apollo-server-micro": "3.6.7",
"axios": "^0.26.1",
"daisyui": "2.13.6",
"express": "4.17.3",
"google-map-react": "^2.1.10",
"graphql": "16.3.0",
"graphql-middleware": "6.0.9",
"graphql-scalars": "1.17.0",
"graphql-shield": "7.5.0",
"graphql-tag": "2.12.6",
"micro": "9.3.4",
"micro-cors": "0.1.1",
"moment": "^2.29.2",
"next": "12.1.4",
"next-auth": "4.3.1",
"next-pwa": "^5.4.7",
"nexus": "1.3.0",
"prettier": "^2.6.2",
"react": "18.0.0",
"react-dom": "18.0.0",
"react-markdown": "8.0.2",
"react-modal": "^3.14.4",
"react-router": "^6.3.0",
"tailwindcss": "3.0.23"
},
"devDependencies": {
"@types/graphql": "14.5.0",
"@types/micro-cors": "0.1.2",
"@types/node": "17.0.23",
"@types/react": "17.0.43",
"autoprefixer": "^10.4.4",
"eslint": "8.12.0",
"eslint-config-next": "12.1.4",
"eslint-config-prettier": "^8.5.0",
"postcss": "8.4.12",
"prisma": "^3.11.1",
"ts-node": "10.7.0",
"typescript": "4.5.5"
},
"prisma": {
"seed": "ts-node prisma/seed.ts"
}
}