-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 855 Bytes
/
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
{
"name": "seis",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"draw": "node -r esm prisma/drawWordOfTheDay.js"
},
"dependencies": {
"@emotion/react": "^11.9.0",
"@emotion/styled": "^11.8.1",
"@material-ui/core": "^4.12.4",
"@mui/icons-material": "^5.8.2",
"@mui/material": "^5.8.2",
"@prisma/client": "^3.14.0",
"clsx": "^1.1.1",
"esm": "^3.2.25",
"next": "12.1.6",
"node-sass": "^7.0.1",
"react": "18.1.0",
"react-dom": "18.1.0",
"react-hook-form": "^7.31.2",
"react-simple-keyboard": "^3.4.140"
},
"devDependencies": {
"eslint": "8.16.0",
"eslint-config-next": "12.1.6",
"prisma": "^3.14.0"
},
"prisma": {
"seed": "node -r esm prisma/seed.js"
}
}