-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 2.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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "faculty-activity-tracker",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"dev:db:up": "docker-compose up -d",
"dev:db:down": "docker-compose down",
"reset:dev": "DATABASE_URL='postgresql://sandbox:chongus@localhost:5432/fat?schema=public' npx prisma migrate reset",
"migrate": "yarn prisma migrate",
"migrate:dev": "DATABASE_URL='postgresql://sandbox:chongus@localhost:5432/fat?schema=public' yarn prisma migrate dev",
"generate": "yarn prisma generate",
"seed": "yarn prisma db seed",
"seed:dev": "DATABASE_URL='postgresql://sandbox:chongus@localhost:5432/fat?schema=public' yarn seed",
"format:check": "prettier --check --ignore-path .gitignore .",
"format": "prettier --write --ignore-path .gitignore .",
"prisma:studio:dev": "DATABASE_URL='postgresql://sandbox:chongus@localhost:5432/fat?schema=public' npx prisma studio",
"prepare": "husky install"
},
"lint-staged": {
"**/*.(ts|tsx|js|md|json)": "prettier --write"
},
"dependencies": {
"@next/font": "13.1.6",
"@prisma/client": "4.9.0",
"@reduxjs/toolkit": "^1.9.2",
"@svgr/webpack": "^6.5.1",
"@types/node": "^18.11.19",
"@types/react": "18.0.27",
"@types/react-dom": "18.0.10",
"@types/recharts": "^1.8.27",
"clsx": "^2.0.0",
"eslint": "8.33.0",
"eslint-config-next": "13.1.6",
"moment": "^2.29.4",
"next": "13.1.6",
"next-auth": "^4.19.0",
"nextjs-progressbar": "^0.0.16",
"prisma": "4.9.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-redux": "^8.0.5",
"react-responsive-carousel": "^3.2.23",
"recharts": "^2.9.3",
"typescript": "^4.9.5"
},
"devDependencies": {
"@faker-js/faker": "^8.3.1",
"autoprefixer": "^10.4.13",
"dotenv-cli": "^7.3.0",
"husky": "^8.0.0",
"postcss": "^8.4.21",
"prettier": "3.0.3",
"prettier-plugin-tailwindcss": "0.5.6",
"sass": "^1.57.1",
"tailwindcss": "^3.2.4",
"ts-node": "^10.9.1"
},
"prisma": {
"seed": "ts-node prisma/seed.ts",
"schema": "prisma/schema.prisma"
}
}