-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1009 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 1009 Bytes
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
{
"name": "jobs-ejs",
"version": "1.0.0",
"description": "Server Side ejs aka enbedded JS for our jobs api server",
"main": "index.js",
"scripts": {
"test": "NODE_ENV=test mocha tests/*.js --timeout 5000 --exit",
"node": "node app.js",
"start": "node app.js"
},
"author": "",
"license": "ISC",
"dependencies": {
"bcryptjs": "^2.4.3",
"connect-flash": "^0.1.1",
"connect-mongodb-session": "^5.0.0",
"cookie-parser": "^1.4.6",
"dotenv": "^16.4.5",
"ejs": "^3.1.10",
"express": "^4.19.2",
"express-async-errors": "^3.1.1",
"express-rate-limit": "^7.4.0",
"express-session": "^1.18.0",
"helmet": "^7.1.0",
"host-csrf": "^1.0.2",
"mongoose": "^8.6.1",
"passport": "^0.7.0",
"passport-local": "^1.0.0",
"xss-clean": "^0.1.4"
},
"devDependencies": {
"@faker-js/faker": "^9.0.3",
"chai": "^5.1.1",
"chai-http": "^5.0.0",
"factory-bot": "^6.3.1",
"mocha": "^10.7.3",
"puppeteer": "^23.4.1"
}
}