-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.17 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
{
"name": "collections-backend",
"version": "1.0.0",
"description": ":computer: Projeto desenvolvido como atividade da disciplina de Desenvolvimento Web",
"main": "node app.js",
"scripts": {
"test": "mocha --timeout 10000",
"start": "node ./node_modules/nodemon/bin/nodemon.js app.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DavidMedeiros/collections-backend.git"
},
"author": "David Souza",
"license": "ISC",
"bugs": {
"url": "https://github.com/DavidMedeiros/collections-backend/issues"
},
"homepage": "https://github.com/DavidMedeiros/collections-backend#readme",
"dependencies": {
"assert": "^1.4.1",
"bcryptjs": "^2.4.3",
"body-parser": "~1.4.2",
"connect-mongo": "^2.0.1",
"cookie-parser": "^1.4.3",
"cors": "^2.8.4",
"dotenv": "^5.0.1",
"express": "^4.16.3",
"express-session": "^1.15.6",
"method-override": "^3.0.0",
"mongoose": "^5.2.12",
"morgan": "^1.9.0",
"passport": "^0.4.0",
"passport-local": "^1.0.0",
"swagger": "^0.7.5",
"swagger-ui-express": "^4.0.1",
"underscore": "^1.9.1"
},
"devDependencies": {
"supertest": "^3.1.0"
}
}