-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
66 lines (66 loc) · 1.75 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
{
"name": "bitpoint",
"version": "0.0.1",
"description": "REST API using Node with typescript, KOA framework. TypeORM for SQL. Middlewares JWT, CORS, Winston Logger.",
"main": "src/index.ts",
"scripts": {
"watch": "nodemon --watch 'src/**/*' -e ts,tsx --exec ts-node src/index.ts",
"build-ts": "tsc",
"lint": "tslint -c tslint.json -p tsconfig.json",
"lint:fix": "tslint -c tslint.json -p tsconfig.json --fix",
"serve": "node dist/server.js",
"build": "npm run lint && npm run build-ts",
"start": "ts-node src/index.ts",
"typeorm": "ts-node ./node_modules/.bin/typeorm -c bitpoint"
},
"author": "Murtaza Nathani",
"license": "MIT",
"keywords": [
"typescript",
"koa",
"koa2",
"jwt",
"winston",
"rest",
"starter",
"typeORM",
"class-validator",
"helmet",
"sql",
"api",
"cors"
],
"repository": "github:javieraviles/node-typescript-koa-rest",
"devDependencies": {
"@koa/cors": "^2.2.1",
"@types/bcrypt": "^3.0.0",
"@types/dotenv": "^4.0.3",
"@types/jsonwebtoken": "^7.2.8",
"@types/koa": "2.0.44",
"@types/koa-helmet": "^3.1.2",
"@types/koa-router": "^7.0.28",
"@types/koa__cors": "^2.2.2",
"@types/node": "^8.0.29",
"nodemon": "^1.17.4",
"npm": "^6.4.1",
"ts-node": "3.3.0",
"tslint": "^5.10.0",
"typescript": "2.5.2"
},
"dependencies": {
"bcrypt": "^3.0.2",
"class-validator": "^0.9.1",
"dotenv": "^6.0.0",
"jsonwebtoken": "^8.3.0",
"koa": "^2.5.1",
"koa-body": "^4.0.4",
"koa-helmet": "^4.0.0",
"koa-router": "^7.4.0",
"mysql2": "^1.6.1",
"pg": "^7.4.3",
"pg-connection-string": "^2.0.0",
"reflect-metadata": "^0.1.10",
"typeorm": "0.2.7",
"winston": "^3.0.0"
}
}