-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.23 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
{
"name": "lightweight-express-server",
"version": "1.0.1",
"description": "Lightweight express server has the very basic setup to spin up either an http, https, or spdy server without the bloat of generated code. ",
"main": "server.js",
"scripts": {
"debug": "DEBUG='server,routes:*,utils:*' nodemon server/server.js",
"dev": "nodemon server/server.js",
"start": "node server/server.js",
"test": "mocha server/test",
"test_module": "nodemon --exec mocha server/test/app.test.js"
},
"keywords": [
"Lightweight",
"express",
"server"
],
"author": "Richard Schloss",
"license": "ISC",
"devDependencies": {
"bcryptjs": "^2.4.3",
"chai": "^4.2.0",
"debug": "^4.1.0",
"express": "^4.16.4",
"minimist": "^1.2.0",
"mocha": "^5.2.0",
"morgan": "^1.9.1",
"nodemon": "^1.18.7"
},
"dependencies": {
"async": "^2.6.1",
"express-session": "^1.15.6",
"google-auth-library": "^2.0.1",
"jquery": "^3.4.0",
"mongoose": "^5.7.5",
"passport": "^0.4.0",
"passport-google-oauth": "^1.0.0",
"passport-jwt": "^4.0.0",
"passport-local": "^1.0.0",
"passport-oauth": "^1.0.0",
"q": "^1.5.1",
"serve-static": "^1.13.2",
"spdy": "^4.0.0"
}
}