-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 2.33 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
72
73
74
75
76
77
78
{
"name": "ddrak",
"version": "3.0.0",
"description": "",
"keywords": [],
"license": "MIT",
"author": "",
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start",
"generate": "npm -s run generate:prisma && npm -s run generate:nexus",
"generate:prisma": "npx prisma generate",
"generate:nexus": "dotenv -e .env -- ts-node -r tsconfig-paths/register --transpile-only -P nexus.tsconfig.json src/pages/api/graphql",
"ts-node": "ts-node --compiler-options \"{\\\"module\\\":\\\"commonjs\\\"}\"",
"migrate": "dotenv -e .env -- npx prisma migrate dev"
},
"dependencies": {
"@babel/preset-env": "^7.20.2",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.18.6",
"@fullcalendar/common": "^5.11.3",
"@fullcalendar/daygrid": "^5.11.3",
"@fullcalendar/interaction": "^5.11.3",
"@fullcalendar/react": "^5.11.3",
"@fullcalendar/timegrid": "^5.11.3",
"@prisma/client": "^4.4.0",
"@types/classnames": "^2.3.1",
"apollo-server-micro": "3.10.2",
"axios": "^0.27.2",
"babel-plugin-transform-require-ignore": "^0.1.1",
"bcryptjs": "^2.4.3",
"classnames": "^2.3.1",
"date-fns": "^2.29.3",
"dayjs": "^1.11.5",
"express": "4.18.1",
"graphql": "16.5.0",
"graphql-middleware": "6.0.9",
"graphql-request": "^5.0.0",
"graphql-scalars": "1.18.0",
"graphql-shield": "^7.5.0",
"graphql-tag": "2.12.6",
"jsonwebtoken": "^8.5.1",
"micro": "9.4.1",
"micro-cors": "0.1.1",
"moment": "^2.29.4",
"next": "12.3.0",
"next-pwa": "^5.6.0",
"next-transpile-modules": "^10.0.0",
"nexus": "1.3.0",
"postcss-nested": "^5.0.6",
"postcss-preset-env": "^7.8.1",
"query-string": "^7.1.1",
"react": "18.2.0",
"react-datepicker": "^4.8.0",
"react-dom": "18.2.0",
"react-icons": "^4.4.0",
"react-markdown": "8.0.3",
"react-query": "^3.39.2",
"recoil": "^0.7.5"
},
"devDependencies": {
"@types/date-fns": "^2.6.0",
"@types/graphql": "14.5.0",
"@types/micro-cors": "0.1.2",
"@types/node": "16.11.58",
"@types/react": "18.0.18",
"@types/react-datepicker": "^4.4.2",
"dotenv-cli": "^6.0.0",
"prisma": "^4.4.0",
"ts-node": "10.9.1",
"tsconfig-paths": "^4.1.0",
"typescript": "4.8.3"
},
"prisma": {
"seed": "ts-node prisma/seed.ts"
}
}