-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.15 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
{
"name": "staclone",
"version": "1.0.0",
"description": "A simple clone of Stackoverflow",
"main": "app.js",
"scripts": {
"start": "node app.js",
"test": "NODE_ENV=test nyc --reporter=text --reporter=html mocha tests/**/*.js --timeout 10000 --exit"
},
"author": "",
"license": "ISC",
"dependencies": {
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"email-templates": "^7.0.4",
"express": "^4.17.1",
"express-jwt": "^5.3.3",
"express-validator": "^6.4.1",
"jsonwebtoken": "^8.5.1",
"mockgoose": "^8.0.4",
"mongoose": "^5.9.10",
"morgan": "^1.10.0",
"node-mailer": "^0.1.1",
"passport": "^0.4.1",
"passport-local": "^1.0.0",
"swagger-ui-express": "^4.1.4"
},
"devDependencies": {
"chai": "^4.2.0",
"chai-http": "^4.3.0",
"coveralls": "^3.1.0",
"faker": "^4.1.0",
"istanbul": "^0.4.5",
"mocha": "^7.1.2",
"mocha-lcov-reporter": "^1.3.0",
"mocha-prepare": "^0.1.0",
"mongo-unit": "^2.0.1",
"mongodb-memory-server": "^6.6.0",
"nyc": "^15.0.1",
"sinon": "^9.0.2",
"sinon-mongoose": "^2.3.0"
}
}