-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 777 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 777 Bytes
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
{
"name": "document-translator",
"version": "1.0.0",
"description": "A translator from french",
"main": "index.js",
"scripts": {
"start": "node app.js",
"dev": "cross-env NODE_ENV=development nodemon app.js",
"test": "cross-env NODE_ENV=test mocha tests/*.test.js"
},
"author": "",
"license": "ISC",
"dependencies": {
"bcrypt": "^4.0.1",
"body-parser": "^1.19.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-handlebars": "^4.0.3",
"jsonwebtoken": "^8.5.1",
"mongodb": "^3.5.6",
"mongoose": "^5.9.9",
"multer": "^1.4.2",
"shortid": "^2.2.15",
"translate": "^1.1.2"
},
"devDependencies": {
"chai": "^4.2.0",
"cross-env": "^7.0.2",
"mocha": "^7.1.1",
"supertest": "^4.0.2"
}
}