-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 903 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": "curation-backend",
"version": "0.0.1",
"description": "Back-end for the curation project",
"main": "index.js",
"scripts": {
"start": "NODE_ENV=development nodemon --exec babel-node src/index.js",
"test": "echo \"Error: no test specified\" && exit 1",
"prod": "NODE_ENV=production babel-node src/index.js"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.14.0",
"@babel/node": "^7.13.13",
"@babel/preset-env": "^7.14.1",
"nodemon": "^2.0.7"
},
"dependencies": {
"bcrypt": "^5.0.1",
"cors": "^2.8.5",
"dotenv": "^9.0.2",
"email-validator": "^2.0.4",
"express": "^4.17.1",
"fs-extra": "^10.0.0",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.12.8",
"morgan": "^1.10.0",
"multer": "^1.4.2",
"passport": "^0.4.1",
"passport-jwt": "^4.0.0",
"passport-local": "^1.0.0"
}
}