-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
43 lines (43 loc) · 1.13 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
{
"name": "node-ddos",
"version": "1.0.0",
"description": "Node App to generate APIs in JSON using local PostgreSQL DB and remote fastnetmon InfluxDB",
"scripts": {
"start": "nodemon ./bin/server --watch",
"test": "snyk test && npm test"
},
"author": "Ashokaditya",
"license": "ISC",
"dependencies": {
"bluebird": "^3.5.1",
"body-parser": "^1.18.3",
"compression": "^1.7.2",
"cors": "^2.8.4",
"crypto-json": "^2.0.1",
"debug": "^3.1.0",
"dotenv": "^5.0.1",
"express": "^4.16.3",
"express-session": "^1.15.6",
"got": "^8.3.1",
"helmet": "^3.12.1",
"influx": "^5.0.4",
"influxdb-nodejs": "^2.7.7",
"jsonwebtoken": "^8.3.0",
"method-override": "^2.3.10",
"moment": "^2.22.2",
"morgan": "^1.9.0",
"pg": "^7.4.3",
"pg-promise": "^8.4.4",
"socket.io": "^2.1.1"
},
"devDependencies": {
"eslint": "^4.19.1",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-import": "^2.12.0",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-promise": "^3.8.0",
"eslint-plugin-standard": "^3.1.0",
"nodemon": "^1.17.5",
"snyk": "^1.82.1"
}
}