-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
67 lines (67 loc) · 1.92 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
{
"name": "typescript-boilerplate",
"version": "1.0.0",
"description": "a boilerplate for developing APIs project into typescript",
"main": "server.js",
"scripts": {
"start": "ts-node src/server/server.ts ",
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "node dist/server/server.js",
"grunt": "grunt",
"build": "grunt build"
},
"author": "Abhishek Parmar",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.4.5",
"@babel/preset-typescript": "^7.3.3",
"dotenv": "^8.0.0",
"grunt": "^1.0.4",
"grunt-concurrent": "^3.0.0",
"grunt-contrib-copy": "^1.0.0",
"grunt-contrib-watch": "^1.1.0",
"grunt-shell": "^3.0.1",
"grunt-ts": "^6.0.0-beta.22",
"merge2": "^1.2.3",
"require-dir": "^1.2.0",
"sequelize-cli-typescript": "^3.2.0-c",
"ts-loader": "^8.0.4",
"tslint": "^6.1.3",
"typescript": "^4.0.3"
},
"dependencies": {
"@types/glob": "^7.1.1",
"@types/koa": "^2.0.48",
"@types/koa-bodyparser": "^4.3.0",
"@types/koa-convert": "^1.2.2",
"@types/koa-generic-session": "^1.0.2",
"@types/koa-helmet": "^5.2.0",
"@types/koa-logger": "^3.1.1",
"@types/koa-mount": "^4.0.0",
"@types/koa-passport": "^4.0.2",
"@types/koa-router": "7.4.1",
"@types/koa-static": "^4.0.1",
"@types/node": "^14.11.2",
"@types/sequelize": "^4.28.9",
"@types/winston": "^2.4.4",
"grunt-yaml": "^0.4.2",
"joi": "^17.2.1",
"jsonwebtoken": "^8.5.1",
"koa": "^2.7.0",
"koa-bodyparser": "^4.2.1",
"koa-convert": "^2.0.0",
"koa-generic-session": "^2.0.1",
"koa-helmet": "^5.2.0",
"koa-logger": "^3.2.0",
"koa-mount": "^4.0.0",
"koa-passport": "^4.1.3",
"koa-router": "9.4.0",
"koa-static": "^5.0.0",
"mysql2": "2.2.5",
"sequelize": "^5.21.3",
"ts-node": "9.0.0",
"tsc": "^1.20150623.0",
"winston": "^3.2.1",
"winston-daily-rotate-file": "^4.5.0"
}
}