-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.21 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.21 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
{
"name": "auth",
"version": "1.0.0",
"description": "",
"main": "backend/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "concurrently \"npm run backend\" \"npm run frontend\" --names \"BACKEND,FRONTEND\" --prefix name --prefix-colors \"bgBlue.bold,bgMagenta.bold\"",
"start": "cross-env NODE_ENV=production node backend/index.js",
"build": "npm install && npm install --prefix frontend && npm run build --prefix frontend",
"frontend": " npm run dev --prefix frontend",
"backend": "nodemon backend/index.js",
"docker:build": "docker build -t auth-server .",
"docker:start": "docker-compose up -d",
"docker:stop": "docker-compose down"
},
"keywords": [],
"author": "",
"type": "module",
"license": "ISC",
"dependencies": {
"bcryptjs": "^3.0.2",
"cookie-parser": "^1.4.7",
"cors": "^2.8.5",
"crypto": "^1.0.1",
"dotenv": "^17.2.1",
"escape-html": "^1.0.3",
"express": "^5.1.0",
"express-validator": "^7.2.1",
"jsonwebtoken": "^9.0.2",
"mongoose": "^8.18.0",
"cross-env": "^7.0.3",
"nodemailer": "^6.10.1"
},
"devDependencies": {
"concurrently": "^9.2.1",
"nodemon": "^3.1.10"
}
}