-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.08 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
{
"name": "auth-service",
"version": "1.0.0",
"main": "dist/index.js",
"license": "MIT",
"scripts": {
"dev": "nodemon --exec ts-node src/index.ts",
"fix": "tslint --fix ./src/index.ts"
},
"devDependencies": {
"@types/bcrypt": "^1.0.0",
"@types/bluebird": "^3.5.20",
"@types/dotenv": "^4.0.2",
"@types/joi": "^13.0.5",
"@types/jsonwebtoken": "^7.2.5",
"@types/koa": "^2.0.44",
"@types/koa-bodyparser": "^4.2.0",
"@types/koa-helmet": "^3.1.2",
"@types/koa-morgan": "^1.0.4",
"@types/koa-router": "^7.0.27",
"@types/redis": "^2.8.5",
"nodemon": "^1.14.12",
"npm-run-all": "^4.1.2",
"renamer": "^0.6.1",
"ts-node": "^4.1.0",
"tslint": "^5.9.1",
"tslint-config-standard": "^7.0.0"
},
"dependencies": {
"bcrypt": "^1.0.3",
"bluebird": "^3.5.1",
"dotenv": "^5.0.0",
"joi": "^13.1.2",
"jsonwebtoken": "^8.1.1",
"koa": "^2.5.0",
"koa-bodyparser": "^4.2.0",
"koa-helmet": "^3.3.0",
"koa-morgan": "^1.0.1",
"koa-router": "^7.4.0",
"redis": "^2.8.0",
"typescript": "^2.7.1"
}
}