forked from ErykBrol/PicExchange
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 1.03 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
{
"name": "server",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node index.js",
"server": "nodemon run index.js",
"client": "npm run start --prefix client",
"dev": "concurrently \"npm run server\" \"npm run client\"",
"test": "mocha ./tests/ --recursive",
"heroku-postbuild": "NPM_CONFIG_PRODUCTION=false npm install --prefix client && npm run build --prefix client"
},
"author": "",
"license": "ISC",
"dependencies": {
"aws-sdk": "^2.903.0",
"bcrypt": "^5.0.1",
"chai": "^4.3.4",
"concurrently": "^6.0.2",
"cookie-session": "^1.4.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"js-file-download": "^0.4.12",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.12.6",
"multer": "^1.4.2",
"multer-s3": "^2.9.0",
"nodemon": "^2.0.7",
"passport": "^0.4.1",
"passport-local": "^1.0.0",
"sinon": "^10.0.0",
"superagent": "^6.1.0",
"supertest": "^6.1.3"
}
}