-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
77 lines (77 loc) · 1.85 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
71
72
73
74
75
76
77
{
"name": "backend-modern-api",
"version": "1.0.9",
"description": "New modern API that returns nordstrom stores",
"main": "server.js",
"engines": {
"node": ">=14.x"
},
"scripts": {
"test": "jest",
"test:coverage": "jest --coverage && cat ./coverage/lcov.info | coveralls",
"dev": "nodemon node server",
"start": "NODE_ENV=production node server",
"release": "release-it",
"version": "auto-changelog --template changelog.template.hbs -p && git add CHANGELOG.md"
},
"repository": {
"type": "git",
"url": "git+https://github.com/loloDawit/project-volt.git"
},
"keywords": [
"AWS",
"ECS",
"FARGATE",
"Docker",
"MongoDB",
"JWT",
"Express",
"Nodejs"
],
"author": "Dawit, Seble A.",
"license": "MIT",
"bugs": {
"url": "https://github.com/loloDawit/project-volt/issues"
},
"homepage": "https://github.com/loloDawit/project-volt#readme",
"dependencies": {
"bcryptjs": "^2.4.3",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"crypto": "^1.0.1",
"dotenv": "^11.0.0",
"express": "^4.17.2",
"express-mongo-sanitize": "^2.2.0",
"express-rate-limit": "^6.1.0",
"express-session": "^1.17.2",
"helmet": "^5.0.1",
"hpp": "^0.2.3",
"jsonwebtoken": "^8.5.1",
"moment": "^2.29.1",
"mongoose": "^6.1.7",
"nodemailer": "^6.7.2",
"nodemon": "^2.0.15",
"release-it": "^14.12.3",
"xss-clean": "^0.1.1"
},
"jest": {
"collectCoverageFrom": [
"!**/node_modules/**",
"!.release-it.json",
"!package*.json",
"!.release-it.json",
"!coverage/**"
]
},
"devDependencies": {
"auto-changelog": "^2.3.0",
"chai": "^4.3.4",
"chai-http": "^4.3.0",
"colors": "^1.4.0",
"coveralls": "^3.1.1",
"jest": "^27.4.7",
"mocha": "^9.1.4",
"morgan": "^1.10.0",
"supertest": "^6.2.2"
}
}