-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.6 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
{
"name": "simple-mui-dashboard-nextjs",
"version": "0.1.0",
"description": "Simple dashboard built with NextJS and MUI",
"private": "true",
"keywords": [
"dashboard",
"nextjs",
"mui",
"prisma"
],
"author": "Thusara Senanayake <[email protected]>",
"license": "MIT",
"scripts": {
"start": "next start",
"dev": "next dev",
"build": "next build",
"postbuild": "prisma migrate dev --name dev",
"test": "",
"format": "prettier --ignore-path .gitignore --write .",
"lint": "next lint",
"type-check": "tsc",
"predeploy": "",
"deploy": ""
},
"dependencies": {
"@emotion/react": "11.10.5",
"@emotion/styled": "11.10.5",
"@mui/icons-material": "5.11.0",
"@mui/material": "5.11.7",
"@prisma/client": "4.10.1",
"@vercel/postgres": "0.3.2",
"next": "13.1.6",
"react": "18.2.0",
"react-dom": "18.2.0",
"swr": "2.0.3"
},
"devDependencies": {
"@faker-js/faker": "7.6.0",
"@types/node": "18.11.17",
"@types/react": "18.0.14",
"@types/react-dom": "18.0.5",
"eslint": "8.33.0",
"eslint-config-next": "13.1.6",
"eslint-config-prettier": "8.6.0",
"eslint-plugin-prettier": "4.2.1",
"prettier": "2.8.3",
"prisma": "4.10.1",
"ts-node": "10.9.1",
"typescript": "4.7.4"
},
"prisma": {
"seed": "ts-node --compiler-options {\"module\":\"CommonJS\"} prisma/seed.ts"
}
}