File tree Expand file tree Collapse file tree 5 files changed +201
-144
lines changed Expand file tree Collapse file tree 5 files changed +201
-144
lines changed Original file line number Diff line number Diff line change 14
14
],
15
15
"license" : " MIT" ,
16
16
"dependencies" : {
17
- "body-parser" : " ^1.16.1 " ,
18
- "express" : " ^4.14.1 " ,
19
- "express-promise-router" : " ^1.1.1 " ,
20
- "knex" : " ^0.12.7 " ,
17
+ "body-parser" : " ^1.17.2 " ,
18
+ "express" : " ^4.15.3 " ,
19
+ "express-promise-router" : " ^2.0.0 " ,
20
+ "knex" : " ^0.13.0 " ,
21
21
"lodash" : " ^4.17.4" ,
22
- "morgan" : " ^1.8.1 " ,
23
- "objection" : " ^0.7.0 " ,
22
+ "morgan" : " ^1.8.2 " ,
23
+ "objection" : " ../.. " ,
24
24
"sqlite3" : " ^3.1.8"
25
25
},
26
26
"devDependencies" : {
27
- "@types/body-parser" : " ^0.0.34 " ,
28
- "@types/express" : " ^4.0.35 " ,
29
- "@types/knex" : " ^0.0.41 " ,
30
- "@types/lodash" : " ^4.14.53 " ,
27
+ "@types/body-parser" : " ^1.16.4 " ,
28
+ "@types/express" : " ^4.0.36 " ,
29
+ "@types/knex" : " ^0.0.56 " ,
30
+ "@types/lodash" : " ^4.14.70 " ,
31
31
"@types/morgan" : " ^1.7.32" ,
32
- "@types/sqlite3" : " ^2.2.32 " ,
33
- "tslint" : " ^4.4.2 " ,
34
- "tslint-config-standard" : " ^4 .0.0 " ,
35
- "typescript" : " ^2.2.1 "
32
+ "@types/sqlite3" : " ^3.1.0 " ,
33
+ "tslint" : " ^5.5.0 " ,
34
+ "tslint-config-standard" : " ^6 .0.1 " ,
35
+ "typescript" : " ^2.4.2 "
36
36
}
37
37
}
Original file line number Diff line number Diff line change 2
2
"compilerOptions" : {
3
3
"allowJs" : false ,
4
4
"allowUnreachableCode" : false ,
5
- "forceConsistentCasingInFileNames " : true ,
5
+ "alwaysStrict " : true ,
6
6
"module" : " commonjs" ,
7
7
"moduleResolution" : " node" ,
8
8
"noFallthroughCasesInSwitch" : true ,
9
9
"noImplicitAny" : true ,
10
10
"noImplicitReturns" : true ,
11
11
"noImplicitThis" : true ,
12
- "noImplicitUseStrict " : false ,
12
+ "strict " : true ,
13
13
"strictNullChecks" : true ,
14
14
"target" : " es6" ,
15
15
"rootDir" : " src" ,
16
16
"outDir" : " lib"
17
- },
18
- "exclude" : [
19
- " node_modules"
20
- ]
17
+ }
21
18
}
Original file line number Diff line number Diff line change 67
67
"mysql" : " ^2.13.0" ,
68
68
"pg" : " ^6.2.2" ,
69
69
"sqlite3" : " ^3.1.8" ,
70
- "typescript" : " ^2.4.1"
70
+ "tslint" : " ^5.5.0" ,
71
+ "typescript" : " ^2.4.2"
71
72
}
72
73
}
Original file line number Diff line number Diff line change
1
+ {
2
+ "defaultSeverity" : " error" ,
3
+ "extends" : [
4
+ " tslint:recommended"
5
+ ],
6
+ "jsRules" : {},
7
+ "rules" : {
8
+ "class-name" : false ,
9
+ "interface-name" : [false ],
10
+ "max-classes-per-file" : [false ],
11
+ "member-access" : [false ],
12
+ "member-ordering" : [false ],
13
+ "no-namespace" : [false ],
14
+ "no-empty-interface" : [false ],
15
+ "no-unused-expression" : [false ],
16
+ "semicolon" : [true , " always" ],
17
+ "space-before-function-paren" : [false ],
18
+ "trailing-comma" : [false , " always" ],
19
+ "array-type" : [false , " array-simple" ],
20
+ "unified-signatures" : false
21
+ },
22
+ "rulesDirectory" : []
23
+ }
You can’t perform that action at this time.
0 commit comments