-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.86 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
{
"name": "message-service",
"version": "1.0.0",
"private": true,
"scripts": {
"grunt": "grunt",
"start": "npm run build && node ./bin/www",
"start:watch": "npm run build:watch & NODE_ENV=development nodemon ./bin/www",
"build": "npm run grunt --task copy && ./node_modules/.bin/tsc",
"build:watch": "npm run build -- -w",
"test": "NODE_ENV=test mocha --no-timeouts --check-leaks --harmony build/Tests/**/*.js"
},
"license": "ISC",
"dependencies": {
"@types/body-parser": "^1.16.5",
"@types/cookie-parser": "^1.4.1",
"@types/errorhandler": "0.0.31",
"@types/method-override": "0.0.30",
"@types/moment": "^2.13.0",
"@types/moment-timezone": "^0.5.0",
"@types/morgan": "^1.7.33",
"@types/nodemailer": "^4.6.2",
"@types/nodemailer-smtp-transport": "^2.7.4",
"@types/validator": "^9.4.1",
"async": "^2.6.1",
"basic-auth": "^2.0.0",
"body-parser": "^1.18.2",
"class-transformer": "^0.1.8",
"cookie-parser": "^1.4.3",
"cors": "^2.8.4",
"ejs": "^2.5.7",
"express": "^4.16.0",
"express-fileupload": "^0.4.0",
"moment": "^2.18.1",
"moment-timezone": "^0.5.13",
"morgan": "^1.9.0",
"node-env-file": "^0.1.8",
"nodemailer": "^4.6.7",
"nodemailer-smtp-transport": "^2.7.4",
"nodemon": "^1.12.1",
"pg": "^7.3.0",
"routing-controllers": "^0.7.3",
"typedi": "^0.5.2",
"typeorm": "^0.2.7",
"validator": "^10.4.0"
},
"devDependencies": {
"@types/chai": "^4.0.4",
"@types/chai-http": "^3.0.3",
"@types/mocha": "^2.2.43",
"chai": "^4.1.2",
"chai-http": "^3.0.0",
"grunt": "^1.0.3",
"grunt-contrib-copy": "^1.0.0",
"grunt-contrib-watch": "^1.0.0",
"grunt-ts": "^6.0.0-beta.19",
"mocha": "^3.5.3",
"swagger-jsdoc": "^1.9.7",
"swagger-ui-express": "^2.0.8",
"tslint": "^5.7.0",
"typescript": "^2.9.2"
}
}