-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
46 lines (46 loc) · 1.14 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
{
"name": "nosdeputes-front",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"typescript": "tsc -p tsconfig.json",
"import-prisma": "node copy.js"
},
"dependencies": {
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@mui/icons-material": "^6.1.8",
"@mui/lab": "^6.0.0-beta.16",
"@mui/material": "^6.1.8",
"@mui/material-nextjs": "^6.1.8",
"@mui/x-charts": "8.0.0-alpha.1",
"@prisma/client": "^5.16.1",
"@types/lodash": "^4.17.4",
"dotenv": "^16.3.1",
"lodash": "^4.17.21",
"next": "14.0.1",
"react": "^18",
"react-dom": "^18"
},
"devDependencies": {
"@types/jest": "^29.5.11",
"@types/node": "^20.10.4",
"@types/react": "^18.2.43",
"@types/react-dom": "^18.2.17",
"autoprefixer": "^10.0.1",
"eslint": "^8",
"eslint-config-next": "14.0.1",
"postcss": "^8",
"prisma": "^5.16.1",
"prisma-json-schema-generator": "^5.1.5",
"tailwindcss": "^3.3.0",
"typescript": "^5.5.4"
},
"prisma": {
"schema": "./prisma/models"
}
}