-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
70 lines (70 loc) · 2.47 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "coderhouse-backend-express",
"version": "1.0.0",
"description": "Proyecto Express Backend",
"main": "src/server.js",
"type": "module",
"scripts": {
"start": "node .",
"start-local": "node . local",
"start-atlas": "node . atlas",
"dev": "nodemon .",
"dev-local": "nodemon . local",
"dev-atlas": "nodemon . atlas",
"watch-local": "node --watch . local",
"watch-atlas": "node --watch . atlas",
"test-mocha:unit:carts": "mocha ./src/tests/unit/carts_dao.test.js",
"test-mocha:unit:products": "mocha ./src/tests/unit/products_dao.test.js",
"test-mocha:unit:users": "mocha ./src/tests/unit/user_dao.test.js",
"test-mocha:unit:all": "mocha ./src/tests/unit --recursive",
"test-node:unit:carts": "node ./src/tests/unit/carts_dao.test.js",
"test-node:unit:products": "node ./src/tests/unit/products_dao.test.js",
"test-node:unit:users": "node ./src/tests/unit/user_dao.test.js",
"test-jest:full:carts": "set NODE_OPTIONS=--experimental-vm-modules && npx jest ./src/tests/full/carts_endpoints.test.js",
"test-jest:full:products": "set NODE_OPTIONS=--experimental-vm-modules && npx jest ./src/tests/full/products_endpoints.test.js",
"test-jest:full:users": "set NODE_OPTIONS=--experimental-vm-modules && npx jest ./src/tests/full/users_endpoints.test.js",
"test-node:full:carts": "node ./src/tests/full/carts_endpoints.test.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/joseescoli/coderhouse-express.git"
},
"keywords": [
"express",
"backend",
"coderhouse"
],
"author": "José Escoli",
"license": "ISC",
"bugs": {
"url": "https://github.com/joseescoli/coderhouse-express/issues"
},
"homepage": "https://github.com/joseescoli/coderhouse-express#readme",
"devDependencies": {
"chai": "^4.3.10",
"express": "^4.18.2",
"jest": "^29.7.0",
"mocha": "^10.2.0",
"nodemon": "^2.0.22",
"supertest": "^6.3.3"
},
"dependencies": {
"@faker-js/faker": "^8.1.0",
"bcrypt": "^5.1.0",
"connect-mongo": "^5.0.0",
"dotenv": "^16.3.1",
"express-handlebars": "^7.0.7",
"express-session": "^1.17.3",
"mongoose": "^7.4.0",
"mongoose-paginate-v2": "^1.7.31",
"multer": "^1.4.5-lts.1",
"nodemailer": "^6.9.5",
"passport": "^0.6.0",
"passport-github2": "^0.1.12",
"passport-local": "^1.0.0",
"socket.io": "^4.7.1",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.0",
"winston": "^3.10.0"
}
}