-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.27 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
44
45
46
47
48
49
50
{
"name": "rest-api",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node index.js",
"dev": "nodemon index.js",
"test": "NODE_ENV=test nyc mocha --timeout 120000 ./tests/**.test.js --detectOpenHandles --exit",
"coveralls": "nyc report --reporter=text-lcov | coveralls",
"coverage": "nyc npm run test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/songa1/Rest-API.git"
},
"keywords": [],
"author": "Achille Songa",
"license": "ISC",
"bugs": {
"url": "https://github.com/songa1/Rest-API/issues"
},
"homepage": "https://github.com/songa1/Rest-API#readme",
"dependencies": {
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"chai-http": "^4.3.0",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"ejs": "^3.1.5",
"express": "^4.17.1",
"gridfs-stream": "^1.1.1",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.10.15",
"multer": "^1.4.2",
"multer-gridfs-storage": "^4.2.0"
},
"devDependencies": {
"chai": "^4.2.0",
"coveralls": "^3.1.0",
"jest": "^26.6.3",
"mocha": "^8.2.1",
"nodemon": "^2.0.6",
"nyc": "^15.1.0",
"sinon": "^9.2.1",
"superagent": "^6.1.0",
"supertest": "^6.0.1"
}
}