-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.25 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.25 KB
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": "Node",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node index.js",
"startLocal": ". ../../setLocalEnv.sh && ENVIRONMENT=LOCAL NODE_ENV=development nodemon index.js",
"test": "NODE_ENV=test nyc mocha --recursive --timeout 120000 --exit",
"testLocal": ". ../../setLocalEnv.sh && ENVIRONMENT=LOCAL NODE_ENV=test nyc mocha --recursive --timeout 120000 --exit"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"aws-sdk": "^2.716.0",
"connect-flash": "^0.1.1",
"connect-redis": "^5.2.0",
"express": "^4.17.1",
"express-handlebars": "^6.0.2",
"express-rate-limit": "^3.5.3",
"express-session": "^1.17.1",
"express-validator": "^6.6.0",
"express-winston": "^3.4.0",
"fs-extra": "^5.0.0",
"handlebars": "^4.7.7",
"helmet": "^3.23.3",
"ip-range-check": "0.0.2",
"multer": "^1.4.2",
"node-schedule": "^1.3.2",
"nodemailer": "^6.6.0",
"shared": "file:../../shared",
"validator": "^13.7.0",
"winston": "^3.3.3"
},
"devDependencies": {
"chai": "^4.2.0",
"chai-http": "^4.3.0",
"cheerio": "^1.0.0-rc.3",
"mocha": "^9.2.0",
"nyc": "^15.1.0",
"pg": "^8.3.0",
"sinon": "^9.0.2"
}
}