-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.02 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
{
"name": "creepin-on-colleagues",
"version": "0.0.1",
"description": "A simple Node/Express application to load Treehouse student data.",
"main": "app.js",
"scripts": {
"start": "node ./bin/www",
"devstart": "nodemon ./bin/www",
"serverstart": "DEBUG=creepin-on-colleagues:* npm run devstart"
},
"engines": {
"node": "^14.9.0"
},
"author": "Julian Johannesen <[email protected]>",
"license": "ISC",
"dependencies": {
"cookie-parser": "^1.4.5",
"debug": "^4.1.1",
"express": "^4.17.1",
"express-validator": "^6.6.1",
"http-errors": "^1.8.0",
"morgan": "^1.10.0",
"multer": "^1.4.2",
"node-fetch": "^2.6.0",
"nodemon": "^2.0.4",
"pug": "^3.0.0",
"request": "^2.88.2",
"serve-favicon": "^2.5.0"
},
"bugs": {
"url": "[email protected]:julianjohannesen/creapin-on-colleagues.git/issues/",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "[email protected]:julianjohannesen/creapin-on-colleagues.git"
}
}