-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
48 lines (48 loc) · 1.27 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
{
"name": "Social Media TestDrive",
"version": "1.5.0",
"description": "Digital Literacy Platform",
"repository": {
"type": "git",
"url": "https://github.com/social-media-testdrive/truman_testdrive"
},
"author": "Dominic DiFranzo",
"license": "MIT",
"scripts": {
"dev": "nodemon app.js",
"start": "node app.js",
"test": "mocha --reporter spec"
},
"dependencies": {
"@node-rs/bcrypt": "^1.10.5",
"async": "^3.2.6",
"body-parser": "^1.20.3",
"connect-mongo": "^5.1.0",
"csv-writer": "^1.6.0",
"csvtojson": "^2.0.10",
"dotenv": "^16.4.5",
"express": "^4.21.1",
"express-flash": "0.0.2",
"express-session": "^1.18.1",
"lodash": "^4.17.21",
"lusca": "^1.7.0",
"mongoose": "^8.8.3",
"morgan": "^1.10.0",
"multer": "^1.4.5-lts.1",
"passport": "^0.7.0",
"passport-local": "^1.0.0",
"path": "^0.12.7",
"pug": "^3.0.3",
"validator": "^13.12.0"
},
"devDependencies": {
"chai": "^5.1.2",
"nodemon": "^3.1.7",
"sinon": "^19.0.2",
"supertest": "^7.0.0"
},
"engines": {
"node": "22.11.0",
"npm": "10.9.0"
}
}