-
-
Notifications
You must be signed in to change notification settings - Fork 173
/
Copy pathpackage.json
88 lines (88 loc) · 2.36 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "server",
"version": "1.0.41",
"description": "A modern and powerful server for Node.js",
"homepage": "https://serverjs.io/",
"repository": "https://github.com/franciscop/server.git",
"bugs": "https://github.com/franciscop/server/issues",
"funding": "https://www.paypal.me/franciscopresencia/19",
"author": "Francisco Presencia <[email protected]> (https://francisco.io/)",
"license": "MIT",
"scripts": {
"start": "node .",
"dev": "grunt watch",
"build": "grunt",
"pretest": "cp .env.demo .env",
"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'"
},
"keywords": [
"server",
"node.js",
"http",
"websocket",
"socket",
"async"
],
"main": "server.js",
"directories": {
"Documentation": "./docs/documentation",
"Code": "./src",
"Plugins": "./plugins",
"Examples": "./examples"
},
"engines": {
"node": ">=10.0.0"
},
"engineStrict": true,
"dependencies": {
"body-parser": "^1.20.2",
"compression": "^1.7.4",
"connect-redis": "^7.1.1",
"cookie-parser": "^1.4.6",
"csurf": "^1.11.0",
"dotenv": "^16.4.5",
"express": "^4.18.3",
"express-session": "^1.18.0",
"extend": "^3.0.2",
"hbs": "^4.2.0",
"helmet": "^7.1.0",
"ioredis": "^5.3.2",
"loadware": "^2.0.0",
"method-override": "^3.0.0",
"mz": "^2.7.0",
"npmlog": "^7.0.1",
"path-to-regexp": "^6.2.1",
"pug": "^3.0.2",
"response-time": "^2.3.2",
"serve-favicon": "^2.5.0",
"serve-index": "^1.9.1",
"socket.io": "^4.7.4",
"upload-files-express": "^0.4.0"
},
"devDependencies": {
"eslint": "^8.57.0",
"eslint-plugin-jasmine": "^4.1.3",
"grunt": "^1.6.1",
"grunt-bytesize": "^0.2.0",
"grunt-contrib-connect": "^4.0.0",
"grunt-contrib-jshint": "^3.2.0",
"grunt-contrib-pug": "^3.0.0",
"grunt-contrib-watch": "^1.1.0",
"grunt-sass": "^3.1.0",
"jest": "^29.7.0",
"jest-jasmine2": "^29.7.0",
"jstransformer-marked": "^1.4.0",
"picnic": "^7.1.0",
"request-promises": "^1.1.0",
"sass": "^1.71.1",
"supertest": "^6.3.4"
},
"jest": {
"transformIgnorePatterns": [
"/node_modules/"
],
"testRunner": "jest-jasmine2"
}
}