forked from belnadris/typescript-express-sequelize
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.37 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 2.37 KB
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
86
87
{
"name": "typescript-express-sequelize",
"version": "1.1.2",
"description": "Typescript V2 project with Express + Sequelize",
"homepage": "https://github.com/maximegris/typescript-express-sequelize",
"author": {
"name": "Maxime GRIS",
"email": "maxime.gris@gmail.com"
},
"main": "build/src/server.js",
"keywords": [
"Node",
"Express",
"Typescript",
"Sequelize"
],
"scripts": {
"build": "gulp build",
"doc": "gulp generate:doc",
"start": "cross-env NODE_ENV=development gulp watch",
"start:prod": "cross-env NODE_ENV=production gulp watch",
"run:test": "cross-env NODE_ENV=test gulp test",
"tslint": "gulp tslint",
"precommit": "lint-staged",
"prettify": "tsfmt -r --baseDir ./src",
"sqlz:migrate": "./node_modules/.bin/sequelize db:migrate",
"sqlz:undo": "./node_modules/.bin/sequelize db:migrate:undo",
"sqlz:new": "./node_modules/.bin/sequelize migration:create"
},
"lint-staged": {
"src/**/*.ts": [
"prettify",
"git add"
]
},
"dependencies": {
"body-parser": "~1.17.0",
"cors": "~2.8.1",
"cross-env": "~3.2.3",
"express": "~4.15.0",
"express-boom": "~2.0.0",
"express-validator": "~3.1.2",
"morgan": "~1.8.1",
"pg": "~6.1.2",
"pg-hstore": "~2.3.2",
"sequelize": "~3.30.2",
"uuid": "~3.0.1",
"winston": "~2.3.1"
},
"devDependencies": {
"@types/body-parser": "~0.0.33",
"@types/chai": "~3.4.35",
"@types/express": "~4.0.35",
"@types/express-validator": "~2.20.33",
"@types/mocha": "~2.2.39",
"@types/morgan": "~1.7.32",
"@types/sequelize": "~3.4.40",
"@types/winston": "~2.2.0",
"chai": "~3.5.0",
"extendify": "~1.0.0",
"glob": "~7.1.1",
"gulp": "~3.9.1",
"gulp-istanbul": "~1.1.1",
"gulp-json-refs": "~0.1.1",
"gulp-mocha": "~3.0.1",
"gulp-nodemon": "~2.2.1",
"gulp-plumber": "~1.1.0",
"gulp-sourcemaps": "~2.4.0",
"gulp-tslint": "~7.0.1",
"gulp-typedoc": "~2.0.2",
"gulp-typescript": "~3.1.4",
"husky": "^0.13.2",
"lint-staged": "^3.4.0",
"remap-istanbul": "~0.8.4",
"rimraf": "~2.5.4",
"run-sequence": "~1.2.2",
"sequelize-cli": "^2.7.0",
"tslint": "~4.5.1",
"typedoc": "~0.5.7",
"typescript": "~2.2.1",
"typescript-formatter": "^5.1.1"
},
"engines": {
"node": ">=4.0.0"
},
"license": "SEE LICENSE IN LICENSE.md"
}