-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.25 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.25 KB
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
{
"name": "max-video",
"version": "1.0.0",
"description": "Video library",
"main": "server.js",
"repository": "git@github-jalajcodes:jalajcodes/max-video.git",
"author": "jalajcodes <jalaj@mail.com>",
"license": "MIT",
"type": "module",
"private": false,
"scripts": {
"start": "node backend/server",
"start:server": "nodemon backend/server",
"start:client": "cd frontend && yarn start",
"start:app": "concurrently \"npm run start:server\" \"npm run start:client\"",
"build:client": "cd frontend && yarn build",
"db:migrate": "npx prisma migrate dev",
"db:generate": "npx prisma generate",
"db:studio": "npx prisma studio",
"heroku-postbuild": "NPM_CONFIG_PRODUCTION=false cd frontend && yarn && yarn build"
},
"devDependencies": {
"concurrently": "^7.0.0",
"nodemon": "^2.0.15",
"prisma": "^3.11.1"
},
"dependencies": {
"@prisma/client": "^3.11.1",
"@reach/menu-button": "^0.17.0",
"colors": "^1.4.0",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dotenv": "^16.0.0",
"express": "^4.17.3",
"express-async-errors": "^3.1.1",
"google-auth-library": "^7.14.1",
"jsonwebtoken": "^8.5.1",
"loglevel": "^1.8.0",
"morgan": "^1.10.0",
"node-fetch": "^3.2.9"
}
}