This repository was archived by the owner on Mar 7, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.26 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.26 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
46
47
48
49
{
"name": "todayilearned",
"version": "0.0.1",
"engines": {
"node": ">=16.13.0"
},
"description": "A feed for posting what you learned today.",
"main": "app.js",
"private": true,
"scripts": {
"dev": "nodemon ./bin/www & npm run scss",
"scss": "sass --watch scss/main.scss public/styles/main.css",
"test": "cross-env NODE_ENV=test jest --testTimeout=5000"
},
"dependencies": {
"body-parser": "^1.20.0",
"connect-flash": "^0.1.1",
"connect-mongo": "^4.6.0",
"cookie-parser": "~1.4.4",
"cookie-session": "^2.0.0",
"cross-env": "^7.0.3",
"debug": "~2.6.9",
"express": "~4.16.1",
"express-session": "^1.17.3",
"express-validator": "^6.14.2",
"helmet": "^7.0.0",
"http-errors": "~1.6.3",
"md5": "^2.3.0",
"moment": "^2.29.3",
"mongoose": "^6.4.6",
"mongoose-mongodb-errors": "^0.0.2",
"morgan": "~1.9.1",
"multer": "^1.4.5-lts.1",
"nodemon": "^2.0.18",
"passport": "^0.5.0",
"passport-local": "^1.0.0",
"passport-local-mongoose": "^7.1.2",
"pug": "3.0.2",
"slugs": "^0.1.3",
"validator": "^13.7.0"
},
"devDependencies": {
"concurrently": "^7.2.2",
"dotenv": "^16.0.1",
"jest": "^29.6.1",
"sass": "^1.53.0",
"supertest": "^6.3.3"
}
}