-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
72 lines (72 loc) · 2.24 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
71
72
{
"name": "amnesty",
"private": true,
"scripts": {
"dev": "yarn install --frozen-lockfile && concurrently --kill-others-on-fail --names app,_db --prefix-colors blue.inverse,green 'yarn:dev:start:app' 'yarn:dev:start:db'",
"next:dev": "next dev",
"dev:start:db": "docker-compose up",
"dev:start:app": "wait-on tcp:5432 --interval 5000 && yarn db:migrate:dev && next dev",
"dev:start:studio": "prisma studio",
"build": "next build",
"vercel-build": "yarn db:generate:prod && yarn db:migrate:prod && next build",
"start": "next start",
"lint": "yarn lint:eslint && yarn lint:ts",
"lint:eslint": "next lint",
"lint:ts": "tsc --noEmit",
"db:migrate:dev": "prisma generate && prisma migrate dev",
"db:generate:prod": "prisma generate",
"db:migrate:prod": "DATABASE_URL=\"$POSTGRES_URL_NON_POOLING\" ./prod-migrate.sh",
"db:seed": "prisma db seed"
},
"dependencies": {
"@emotion/react": "11.6.0",
"@emotion/styled": "11.6.0",
"@mui/icons-material": "5.2.0",
"@mui/lab": "5.0.0-alpha.58",
"@mui/material": "5.2.1",
"@mui/styles": "5.2.2",
"@mui/system": "5.2.1",
"@mui/x-data-grid": "5.0.1",
"@prisma/client": "^5.6.0",
"axios": "0.24.0",
"bcrypt": "5.0.1",
"excel4node": "1.7.2",
"faker": "5.5.3",
"lodash.debounce": "4.0.8",
"next": "^14.0.4",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hook-form": "7.20.3",
"react-query": "3.39.2",
"recharts": "2.1.6",
"yup": "0.32.11"
},
"devDependencies": {
"@types/bcrypt": "5.0.0",
"@types/faker": "5.5.9",
"@types/lodash.debounce": "4.0.6",
"@types/node": "16.11.10",
"@types/react": "18.0.24",
"babel-plugin-superjson-next": "0.4.4",
"concurrently": "6.4.0",
"dotenv": "10.0.0",
"eslint": "7.32.0",
"eslint-config-next": "^14.0.4",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-prettier": "4.0.0",
"faker": "5.5.3",
"prettier": "2.5.0",
"prisma": "^5.6.0",
"superjson": "1.11.0",
"ts-node": "10.9.1",
"typescript": "5.3.3",
"wait-on": "6.0.0"
},
"prisma": {
"seed": "ts-node --compiler-options {\"module\":\"CommonJS\"} prisma/seed.ts"
},
"engines": {
"node": "18.x",
"yarn": "1.x"
}
}