-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
78 lines (78 loc) · 2.16 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
70
71
72
73
74
75
76
77
78
{
"name": "node-typescript-koa-rest",
"version": "1.4.1",
"description": "API REST using NodeJS and KOA framework, typescript. TypeORM for SQL with class-validators. Middlewares JWT, CORS, Winston Logger.",
"main": "dist/server.js",
"scripts": {
"watch-server": "npm run lint && nodemon",
"build-ts": "tsc",
"copy-static-assets": "ts-node copyStaticAssets.ts",
"lint": "eslint --ext .ts src",
"serve": "node dist/server.js",
"build": "npm run lint && npm run build-ts && npm run copy-static-assets",
"start": "npm run serve",
"heroku-postbuild": "npm run build"
},
"author": "Javier Aviles",
"license": "MIT",
"homepage": "https://github.com/javieraviles/node-typescript-koa-rest#readme",
"keywords": [
"typescript",
"koa",
"koa2",
"jwt",
"winston",
"rest",
"starter",
"typeORM",
"class-validator",
"helmet",
"sql",
"api",
"rest",
"heroku",
"cors"
],
"repository": "github:javieraviles/node-typescript-koa-rest",
"devDependencies": {
"@types/dotenv": "^4.0.3",
"@types/koa": "2.0.44",
"@types/koa-bodyparser": "^4.2.0",
"@types/koa-helmet": "^3.1.2",
"@types/koa-jwt": "^3.3.0",
"@types/koa-router": "^7.0.28",
"@types/koa__cors": "^2.2.2",
"@types/node": "^10.7.0",
"@types/shelljs": "^0.8.0",
"@typescript-eslint/eslint-plugin": "^1.10.2",
"@typescript-eslint/parser": "^1.10.2",
"babel-eslint": "^10.0.1",
"eslint": "^5.16.0",
"eslint-config-alloy": "^2.0.4",
"nodemon": "^1.17.4",
"shelljs": "^0.8.2",
"ts-node": "^7.0.1",
"tslint": "^5.10.0",
"typescript": "^3.5.2"
},
"dependencies": {
"@koa/cors": "^2.2.1",
"@types/koa-static-cache": "^5.1.0",
"class-validator": "^0.9.1",
"crypto": "^1.0.1",
"dotenv": "^6.0.0",
"koa": "^2.5.1",
"koa-body": "^4.1.0",
"koa-helmet": "^4.0.0",
"koa-jwt": "^3.3.2",
"koa-router": "^7.4.0",
"koa-static-cache": "^5.1.2",
"moment": "^2.24.0",
"pg": "^7.4.3",
"pg-connection-string": "^2.0.0",
"reflect-metadata": "^0.1.12",
"typeorm": "^0.2.6",
"typescript-tslint-plugin": "^0.5.0",
"winston": "^3.0.0"
}
}