-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
49 lines (49 loc) · 1.2 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
{
"name": "next-stock-tracker",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint"
},
"dependencies": {
"@apollo/client": "^3.5.6",
"@emotion/react": "^11.7.1",
"@emotion/styled": "^11.6.0",
"@mui/icons-material": "^5.4.2",
"@mui/material": "^5.4.2",
"@next-auth/prisma-adapter": "^0.5.2-next.19",
"@prisma/client": "^3.6.0",
"@reduxjs/toolkit": "^1.7.2",
"apollo-server-micro": "^3.5.0",
"axios": "^0.24.0",
"deepmerge": "^4.2.2",
"graphql": "^16.2.0",
"graphql-iso-date": "^3.6.1",
"lodash": "^4.17.21",
"micro": "^9.3.4",
"micro-cors": "^0.1.1",
"next": "12.0.7",
"next-auth": "^4.0.5",
"nodemailer": "^6.7.2",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-redux": "^7.2.6"
},
"prisma": {
"seed": "ts-node --compiler-options {\"module\":\"CommonJS\"} prisma/seed.ts"
},
"devDependencies": {
"@types/express": "^4.17.13",
"@types/graphql-iso-date": "^3.4.0",
"@types/lodash": "^4.14.178",
"@types/micro-cors": "^0.1.2",
"@types/node": "16.11.12",
"@types/react": "17.0.37",
"eslint": "8.4.1",
"eslint-config-next": "12.0.7",
"prisma": "^3.6.0",
"typescript": "4.5.2"
}
}