-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.29 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
{
"name": "express-typescript-mongo",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "rimraf dist/ && gulp dev",
"stage": "rimraf dist/ && gulp stage",
"build": "rimraf dist/ && gulp build",
"typings": "rimraf typings/ && typings install",
"lint": "tslint --fix \"./src/**/*.tsx\" \"./src/**/*.ts\" ",
"fixall": "tslint --fix ./src/**/*.ts"
},
"author": "",
"license": "ISC",
"description": "",
"dependencies": {
"async": "^2.5.0",
"asyncawait": "^1.0.6",
"bcrypt": "^1.0.3",
"body-parser": "1.15.0",
"compression": "1.6.2",
"cors": "2.8.1",
"eslint": "3.2.0",
"express": "4.13.4",
"jsonwebtoken": "^8.0.1",
"passport": "^0.4.0",
"pg": "^7.3.0",
"pg-hstore": "^2.3.2",
"request": "2.81.0",
"rimraf": "2.6.0",
"sequelize": "3.30.4",
"ts-helpers": "1.1.1",
"ts-loader": "2.0.0",
"tslint": "3.7.4",
"tslint-loader": "2.1.0",
"typings": "0.7.9",
"uuid": "3.0.1"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"gulp": "3.9.1",
"gulp-babel": "^7.0.0",
"gulp-nodemon": "2.2.1",
"gulp-rimraf": "0.2.1",
"gulp-typescript": "3.1.5",
"typescript": "2.0.10"
}
}