-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
43 lines (43 loc) · 1.38 KB
/
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
35
36
37
38
39
40
41
42
43
{
"name": "argentbank",
"version": "1.0.0",
"description": "banking app",
"main": "server.js",
"scripts": {
"start": "node server.js",
"watch": "nodemon server.js",
"client": "npm start --prefix client",
"build": "npm run build --prefix client",
"client-install": "npm install --prefix client",
"server": "nodemon server.js --exec babel-node --presets=@babel/env --ignore client",
"db-start": "brew services start mongodb-community",
"db-stop": "brew services stop mongodb-community",
"populate-db": "node scripts/populateDatabase.js",
"dev": "concurrently \"npm run server\" \"npm run client\"",
"start-app": "concurrently \"npm run server\" \"npm run client\"",
"heroku-postbuild": "NPM_CONFIG_PRODUCTION=false npm install --prefix client && npm run build --prefix client"
},
"author": "HAG",
"license": "MIT",
"dependencies": {
"@babel/node": "^7.16.8",
"axios": "^0.25.0",
"babel-preset-env": "^1.7.0",
"bcrypt": "^5.0.1",
"body-parser": "^1.19.1",
"concurrently": "^7.0.0",
"config": "^3.3.7",
"cors": "^2.8.5",
"dotenv": "^14.2.0",
"express": "^4.17.2",
"idx": "^2.5.6",
"jsonwebtoken": "^8.5.1",
"mongodb": "^4.2.2",
"mongoose": "^6.1.7",
"nodemon": "^2.0.15",
"request": "^2.88.2",
"serve-favicon": "^2.5.0",
"swagger-ui-express": "^4.3.0",
"yamljs": "^0.3.0"
}
}