-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
85 lines (85 loc) · 1.57 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
{
"name": "express-with-mssql",
"version": "1.0.0",
"description": "CRUD api in express with mssql",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"pretest": "eslint --ignore-path .gitignore .",
"start": "node index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/abuzaforfagun/express-with-mssql.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/abuzaforfagun/express-with-mssql/issues"
},
"homepage": "https://github.com/abuzaforfagun/express-with-mssql#readme",
"dependencies": {
"body-parser": "^1.18.3",
"express": "^4.16.3",
"minimist": "^1.2.5",
"msnodesqlv8": "^1.1.4",
"mssql": "^4.1.0",
"prettier": "^1.17.0",
"swagger-node-express": "^2.1.3"
},
"devDependencies": {
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-config-strongloop": "^2.1.0",
"eslint-plugin-import": "^2.17.2"
},
"eslintConfig": {
"globals": {
"pool": "writable",
"res": "Response",
"sqlServer": "writeable"
},
"extends": "airbnb-base",
"env": {
"node": true,
"es6": true,
"browser": true
},
"rules": {
"brace-style": [
"error",
"stroustrup"
],
"comma-dangle": [
"error",
"never"
],
"no-unused-vars": [
"warn"
],
"no-var": [
"off"
],
"one-var": [
"off"
],
"linebreak-style": [
"error",
"windows"
],
"indent": [
"error",
4
],
"wrap-iife": [
"error",
"inside"
],
"padded-blocks": [
"error",
"never"
]
}
}
}