-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
72 lines (72 loc) · 1.8 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
{
"name": "aureolin",
"version": "1.0.0",
"description": "Rest API Framework",
"main": "dist",
"types": "dist",
"files": [
"dist"
],
"scripts": {
"build": "rm -rf dist && tsc -p .",
"lint": "eslint \"src/**/*.ts\"",
"prepare": "npm run build",
"fmt": "prettier --config .prettierrc \"**/*.ts\" --write",
"test": "mocha -r ts-node/register \"tests/**/*.test.ts\" --exit",
"release": "release-it",
"prerelease": "npm run build",
"example": "ts-node example/main.ts"
},
"keywords": [
"api",
"rest",
"koa",
"server",
"decorators",
"typescript",
"typescript-node",
"typescript-node-api",
"typescript-node-rest-api"
],
"author": {
"name": "Alen Yohannan",
"email": "[email protected]",
"url": "https://github.com/Alensaito1"
},
"license": "MIT",
"repository": {
"url": "https://github.com/Alensaito1/aureolin"
},
"issues": "https://github.com/Alensaito1/aureolin",
"devDependencies": {
"@types/koa": "2.13.4",
"@types/koa__router": "8.0.11",
"@types/koa-bodyparser": "4.3.4",
"@types/koa-mount": "4.0.1",
"@types/koa-static": "4.0.2",
"@types/mocha": "9.0.0",
"@types/node": "16.11.14",
"@types/pino": "7.0.4",
"@typescript-eslint/eslint-plugin": "5.7.0",
"@typescript-eslint/parser": "5.7.0",
"eslint": "8.5.0",
"mocha": "9.1.3",
"prettier": "2.5.1",
"release-it": "14.11.8",
"ts-node": "10.4.0",
"typescript": "4.5.4"
},
"dependencies": {
"@koa/router": "^10.1.1",
"axios": "^0.24.0",
"koa": "^2.13.3",
"koa-bodyparser": "^4.3.0",
"koa-mount": "^4.0.0",
"koa-static": "^5.0.0",
"koa-views": "^8.0.0",
"pino": "^7.0.0",
"pino-pretty": "^7.0.1",
"preact": "^10.5.15",
"preact-render-to-string": "^5.1.19"
}
}