forked from Gojodzojo/hackyeah-2023
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
23 lines (23 loc) · 815 Bytes
/
Copy pathpackage.json
File metadata and controls
23 lines (23 loc) · 815 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"workspaces": [
"./*"
],
"scripts": {
"dev-frontend": "npm run dev --workspace frontend",
"dev-backend": "npm run dev --workspace backend",
"build-frontend": "npm run build --workspace frontend",
"build-backend": "npm run build --workspace backend",
"replace-frontend-build": "rimraf backend/build/src/public && mv frontend/build backend/build/src/public",
"build": "npm run build-frontend && npm run build-backend && npm run replace-frontend-build",
"run-build": "cd backend/build/src && node index.js"
},
"dependencies": {
"bcrypt": "^5.1.1",
"dotenv": "^16.3.1",
"jsonwebtoken": "^9.0.2"
},
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/jsonwebtoken": "^9.0.3"
}
}