forked from devexp-io/codici-design-pattern-typescript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
31 lines (31 loc) · 800 Bytes
/
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
{
"name": "design_patterns_typescript",
"version": "1.0.0",
"license": "MIT",
"scripts": {
"clean": "rimraf dist",
"watch": "tsc --watch",
"build": "tsc",
"server": "nodemon --watch ./dist/ --inspect ./dist/index.js",
"debug:inspector": "nodemon --debug './dist/index.js' --watch './dist'"
},
"private": true,
"dependencies": {
"@types/koa": "^2.0.39",
"axios": "^0.18.0",
"cheerio": "^1.0.0-rc.2",
"js-sha512": "^0.7.1",
"jsonwebtoken": "^8.3.0",
"kcors": "^2.2.1",
"koa": "^2.5.1",
"koa-better-body": "^3.0.4",
"koa-router": "^7.4.0",
"nodemon": "^1.11.0",
"npm-run-all": "^4.1.3",
"pg": "^7.4.3",
"rimraf": "^2.6.2",
"source-map-support": "^0.5.6",
"typescript": "^2.9.2"
},
"devDependencies": {}
}