-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 1.91 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
{
"name": "privance",
"version": "0.1.0",
"private": true,
"author": {
"email": "[email protected]",
"name": "Christian Pannwitz",
"url": "https://pnwtz.me"
},
"prisma": {
"seed": "ts-node --transpile-only prisma/seed.ts"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"postinstall": "yarn db:prepare",
"db:prepare": "prisma format && prisma generate",
"db:start": "supabase start",
"db:stop": "supabase stop --backup",
"db:seed": "prisma db seed"
},
"dependencies": {
"@emotion/react": "~11.10.5",
"@emotion/styled": "~11.10.5",
"@fontsource/source-sans-pro": "~4.5.11",
"@hookform/resolvers": "~2.9.10",
"@mui/icons-material": "~5.10.9",
"@mui/lab": "5.0.0-alpha.107",
"@mui/material": "~5.10.13",
"@mui/x-data-grid": "~5.17.11",
"@nivo/bar": "~0.80.0",
"@nivo/calendar": "~0.80.0",
"@nivo/core": "~0.80.0",
"@nivo/line": "~0.80.0",
"@nivo/stream": "~0.80.0",
"@prisma/client": "~4.6.1",
"axios": "~1.1.3",
"csv-parse": "~5.3.2",
"currency-map-symbol": "~4.0.5",
"dayjs": "~1.11.6",
"next": "~13.0.3",
"notistack": "3.0.0-alpha.11",
"react": "~18.2.0",
"react-color": "~2.19.3",
"react-dom": "~18.2.0",
"react-dropzone": "~14.2.3",
"react-hook-form": "~7.39.3",
"react-select": "~5.6.0",
"swr": "~1.3.0",
"yup": "~0.32.11",
"zod": "^3.19.1"
},
"devDependencies": {
"@types/node": "~18.11.9",
"@types/react": "~18.0.25",
"@types/react-color": "~3.0.6",
"@typescript-eslint/eslint-plugin": "~5.42.1",
"eslint": "~8.27.0",
"eslint-config-next": "13.0.3",
"eslint-import-resolver-typescript": "^3.5.2",
"eslint-plugin-import": "^2.26.0",
"prettier": "^2.7.1",
"prisma": "^4.6.1",
"supabase": "^1.12.2",
"ts-node": "^10.9.1",
"typescript": "4.8.4"
}
}