-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.38 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
{
"name": "restless",
"version": "0.2.6",
"description": "REST, but with LESS work! Create a REST API and SQL relational database, simply by declaring it (using TypeScript decorators)",
"license": "MIT",
"readmeFilename": "README.md",
"author": {
"name": "Tim Merrison",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/tjme/restless.git"
},
"bugs": {
"url": "https://github.com/tjme/restless/issues"
},
"tags": [
"Restless",
"TypeScript",
"REST",
"SQL",
"PostgreSQL",
"SQLServer",
"MySQL",
"MariaDB",
"typeORM",
"Koa",
"Node",
"decorators",
"RESTful"
],
"devDependencies": {
"@types/koa": "^2.0.39",
"@types/koa-bodyparser": "^3.0.23",
"@types/koa-router": "^7.0.21",
"@types/koa-static": "^3.0.0",
"@types/node": "^7.0.27",
"typescript": "^2.4.1"
},
"dependencies": {
"body-parser": "^1.17.1",
"jsonwebtoken": "^7.4.1",
"koa": "^2.2.0",
"koa-bodyparser": "^4.2.0",
"koa-passport": "^3.0.0",
"koa-router": "^7.0.1",
"koa-session": "^5.1.0",
"koa-static": "^4.0.0",
"mssql": "^4.0.0",
"reflect-metadata": "^0.1.9",
"typeorm": "^0.1.0-alpha.33"
},
"engines": {
"npm": "^7.0.0"
},
"scripts": {
"start": "tsc && node dist/server/index.js"
},
"config": {
"port": "3000"
}
}