This repository has been archived by the owner on Jan 23, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.56 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
{
"name": "sheldyn",
"version": "1.0.0",
"description": "SOC Automation Tool",
"main": "app.js",
"scripts": {
"babel-node": "./node_modules/.bin/babel-node",
"start": "./node_modules/.bin/nodemon --exec npm run babel-node -- bin/www",
"test": "echo \"Error: no test specified\" && exit 1",
"build": "./node_modules/.bin/babel src -d lib"
},
"author": "Dallas Baker",
"license": "ISC",
"dependencies": {
"axios": "^0.18.0",
"babel-register": "^6.26.0",
"bluebird": "^3.5.1",
"body-parser": "^1.18.2",
"chalk": "^2.4.1",
"child_process": "^1.0.2",
"csvtojson": "^1.1.12",
"debug": "^3.1.0",
"dotenv": "^5.0.1",
"ejs": "^2.6.1",
"express": "^4.16.3",
"express-session": "^1.15.6",
"lodash": "^4.17.10",
"morgan": "^1.9.0",
"multer": "^1.3.0",
"passport": "^0.4.0",
"passport-local": "^1.0.0",
"path": "^0.12.7",
"socket.io": "^2.1.1",
"sqlite3": "^4.0.0",
"strong-soap": "^1.9.0",
"underscore": "^1.9.0",
"unzipper": "^0.8.13",
"xml2js": "^0.4.19",
"ya-csv": "^0.10.1"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-preset-env": "^1.7.0",
"eslint": "^4.19.1",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.11.0",
"gulp": "^3.9.1",
"nodemon": "^1.17.4"
},
"nodemonConfig": {
"restartable": "rs",
"ignore": [
"node_modules/**/node_modules",
"scripts/"
],
"delay": "3000",
"env": {
"NODE_ENV": "development",
"PORT": 3000
}
}
}