forked from franciscop/server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 1.92 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "server",
"version": "1.0.18",
"description": "A modern and powerful server for Node.js",
"main": "server.js",
"scripts": {
"start": "node .",
"dev": "grunt watch",
"test": "jest --coverage --forceExit",
"kill-comment": "Kill a process running in a specific port: PORT=3000 npm run kill",
"kill": "kill $(lsof -t -i:$PORT) && echo '> KILLED!' || echo '> The port was already dead'"
},
"engines": {
"node": ">=7.6.0"
},
"engineStrict": true,
"directories": {
"Documentation": "./docs/documentation",
"Code": "./src",
"Plugins": "./plugins",
"Examples": "./examples"
},
"repository": {
"type": "git",
"url": "git+https://github.com/franciscop/server"
},
"author": "Francisco Presencia <[email protected]>",
"license": "MIT",
"homepage": "https://serverjs.io/",
"dependencies": {
"body-parser": "^1.15.2",
"compression": "^1.6.2",
"connect-redis": "^3.3.0",
"cookie-parser": "^1.4.3",
"csurf": "^1.9.0",
"dotenv": "^4.0.0",
"express": "^4.14.0",
"express-data-parser": "^1.2.0",
"express-session": "^1.14.2",
"extend": "^3.0.0",
"hbs": "^4.0.1",
"helmet": "^3.9.0",
"loadware": "^2.0.0",
"log": "^1.4.0",
"method-override": "^2.3.10",
"mz": "^2.6.0",
"path-to-regexp": "^0.1.7",
"pug": "^2.0.0-rc.4",
"response-time": "^2.3.2",
"serve-favicon": "^2.3.2",
"serve-index": "^1.8.0",
"socket.io": "^2.0.3"
},
"devDependencies": {
"eslint": "^4.7.2",
"eslint-plugin-jasmine": "^2.2.0",
"grunt": "^1.0.1",
"grunt-bytesize": "^0.2.0",
"grunt-contrib-connect": "^1.0.2",
"grunt-contrib-jshint": "^1.1.0",
"grunt-contrib-pug": "^1.0.0",
"grunt-contrib-sass": "^1.0.0",
"grunt-contrib-watch": "^1.0.0",
"jest": "^21.2.1",
"jstransformer-marked": "^1.0.2",
"picnic": "^6.4.0",
"request-promises": "^1.0.1",
"supertest": "^3.0.0"
}
}