-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
69 lines (69 loc) · 1.99 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
{
"name": "verify",
"version": "0.1.0",
"private": true,
"scripts": {
"start": "nodemon -w ./src -e ts ./src/bin/www --exec ts-node",
"lint": "tslint './src/**/*.ts'",
"lintFix": "tslint --fix './src/**/*.ts'",
"test": "nyc mocha ./src/**/*.spec.ts",
"build": "tsc -p tsconfig.build.json --outDir dist",
"serve": "node ./dist/bin/www.js"
},
"nyc": {
"exclude": [
"src/**/*.spec.ts"
]
},
"dependencies": {
"@types/joi": "10.4.0",
"authenticator": "1.1.3",
"bcrypt-nodejs": "0.0.3",
"body-parser": "~1.15.2",
"debug": "~2.2.0",
"express": "~4.14.0",
"inversify": "4.2.0",
"inversify-express-utils": "4.0.0",
"joi": "10.6.0",
"js-yaml": "^3.10.0",
"jsonwebtoken": "^7.2.1",
"lru-cache": "https://registry.npmjs.org/lru-cache/-/lru-cache-4.1.1.tgz",
"mailcomposer": "4.0.2",
"mailgun-js": "0.13.1",
"moment": "https://registry.npmjs.org/moment/-/moment-2.18.1.tgz",
"node-mailjet": "^3.2.1",
"node-uuid": "^1.4.7",
"redis": "2.6.3",
"reflect-metadata": "0.1.10",
"request": "2.81.0",
"rolling-rate-limiter": "0.1.9",
"typemoq": "^2.0.1"
},
"devDependencies": {
"@types/bcrypt-nodejs": "0.0.30",
"@types/chai": "https://registry.npmjs.org/@types/chai/-/chai-3.4.34.tgz",
"@types/chai-as-promised": "7.1.0",
"@types/chai-http": "0.0.29",
"@types/debug": "0.0.29",
"@types/express": "4.0.34",
"@types/jsonwebtoken": "7.2.0",
"@types/mocha": "2.2.38",
"@types/node": "7.0.0",
"@types/node-uuid": "0.0.28",
"@types/redis": "0.12.34",
"@types/request": "2.0.3",
"@types/sinon": "2.3.4",
"chai": "https://registry.npmjs.org/chai/-/chai-3.5.0.tgz",
"chai-as-promised": "7.1.1",
"chai-http": "3.0.0",
"mocha": "3.2.0",
"nodemon": "^1.11.0",
"npm-shrinkwrap": "^6.0.2",
"nyc": "10.0.0",
"sinon": "3.3.0",
"ts-node": "2.0.0",
"tslint": "5.7.0",
"tslint-config-standard": "5.0.2",
"typescript": "2.1.5"
}
}