-
Notifications
You must be signed in to change notification settings - Fork 103
/
package.json
34 lines (34 loc) · 983 Bytes
/
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
{
"name": "resume-builder",
"version": "1.1.0",
"description": "Resume Builder Application using ReactJS(frontend) and NodeJS(backend)",
"main": "server.js",
"scripts": {
"client-install": "npm install --force --prefix client",
"build": "npm install",
"start": "node server.js",
"server": "nodemon server.js",
"client": "npm start --prefix client",
"dev": "concurrently \"npm run server\" \"npm run client\"",
"render-postbuild": "NPM_CONFIG_PRODUCTION=true && npm install --prefix client && npm run build --prefix client"
},
"author": "Girish Thatte",
"license": "MIT",
"dependencies": {
"body-parser": "^1.20.0",
"concurrently": "^7.2.0",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"google-auth-library": "^8.7.0",
"html-pdf": "^3.0.1",
"jsonwebtoken": "^9.0.0",
"mongodb": "^5.3.0"
},
"engines": {
"node": ">=14"
},
"devDependencies": {
"nodemon": "^2.0.22"
}
}