-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
33 lines (33 loc) · 1000 Bytes
/
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
{
"name": "node-app-data-connectors",
"version": "2.9.1",
"description": "Collection of libraries to provide an easy interface to common data sources",
"main": "index.js",
"dependencies": {
"moment": "^2.22.2",
"mysql2": "github:sidorares/node-mysql2#semver:^1.6.5",
"node-app-base": "github:infinityworks/node-app-base#semver:^0.4.16",
"redis": "^2.8.0",
"request-promise": "^4.2.4"
},
"devDependencies": {
"babel-eslint": "^8.2.6",
"eslint": "^4.19.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-react": "^7.11.1",
"mocha": "^5.2.0",
"nyc": "^14.1.1",
"sinon": "^4.5.0"
},
"scripts": {
"start": "node index.js",
"lint": "eslint ./src",
"lint-fix": "eslint --fix ./src",
"lint-fix-dry-run": "eslint --fix-dry-run ./src"
},
"author": "Infinity Works Consulting",
"license": "ISC"
}