-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
31 lines (31 loc) · 876 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
{
"name": "cloudrun-node-api-tutorial",
"version": "1.0.0",
"description": "How to deploy a node api on google cloud run",
"main": "src/main.js",
"author": "Nkere-Awaji Inwan ([email protected])",
"license": "MIT",
"scripts": {
"start": "NODE_ENV=production node ./build/app.js",
"start:dev": "nodemon --exec babel-node src/app.js",
"build-server": "babel -d ./build ./src"
},
"dependencies": {
"@babel/core": "^7.10.5",
"@babel/node": "^7.4.5",
"@babel/plugin-transform-runtime": "^7.5.0",
"@babel/preset-env": "^7.4.5",
"@babel/runtime": "^7.5.4",
"@babel/cli": "^7.4.4",
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"dotenv": "^6.2.0",
"express": "^4.17.1",
"mongoose": "^5.9.25",
"morgan": "^1.9.1",
"validatorjs": "^3.18.1"
},
"devDependencies": {
"nodemon": "^1.19.1"
}
}