This repository was archived by the owner on Jan 30, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.73 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 1.73 KB
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
{
"name": "start-point-koa",
"version": "0.0.8",
"description": "REST API using Node with typescript, KOA framework with CORS. TypeORM for SQL.",
"main": "index.ts",
"scripts": {
"start": "ts-node src/index.ts",
"watch": "nodemon --watch 'src/**/*' -e ts,tsx --exec ts-node -r tsconfig-paths/register ./src/index.ts",
"lint": "tslint -c tslint.json -p tsconfig.json",
"lint:fix": "tslint -c tslint.json -p tsconfig.json --fix",
"sync": "ts-node ./node_modules/.bin/typeorm schema:sync"
},
"dependencies": {
"bcrypt": "^5.0.0",
"class-validator": "^0.14.0",
"dotenv": "^7.0.0",
"jsonwebtoken": "^9.0.0",
"kcors": "^2.2.2",
"koa": "^2.7.0",
"koa-bodyparser": "^4.2.1",
"koa-helmet": "^4.1.0",
"koa-router": "^7.4.0",
"mysql": "^2.14.1",
"reflect-metadata": "^0.1.10",
"routing-controllers": "^0.7.7",
"typedi": "^0.8.0",
"typeorm": "0.2.25"
},
"devDependencies": {
"@types/koa": "^2.0.48",
"@types/koa-bodyparser": "^4.2.2",
"@types/koa-router": "^7.0.40",
"@types/node": "^11.11.3",
"nodemon": "^1.18.10",
"ts-node": "8.0.3",
"tsconfig-paths": "^3.8.0",
"tslint": "^5.14.0",
"tslint-consistent-codestyle": "^1.15.1",
"typescript": "^3.3.3333"
},
"license": "MIT",
"keywords": [
"typescript",
"koa",
"koa2",
"jwt",
"winston",
"rest",
"starter",
"typeORM",
"class-validator",
"routing-controllers",
"helmet",
"sql",
"api",
"DI",
"typedi",
"cors"
],
"author": {
"name": "yesworld",
"email": "a.yesworld@gmail.com",
"url": "https://github.com/yesworld"
},
"contributors": [
{
"name": "xorik",
"url": "https://github.com/xorik"
}
]
}