-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.29 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
{
"name": "taco_haus",
"version": "0.0.1",
"description": "Taco.Haus API",
"engineStrict": true,
"engines": {
"node": ">= 15"
},
"main": "build/src/index.js",
"types": "build/src/index.d.ts",
"devDependencies": {
"@types/jest": "~23.3.9",
"@types/node": "~10",
"dotenv": "^6.1.0",
"jest": "~23.6.0",
"prettier": "1.15.2",
"rimraf": "~2.6.2",
"supertest": "^3.3.0",
"ts-jest": "~23.10.5",
"tslib": "~1.9.3",
"tslint": "~5.11.0",
"tslint-config-prettier": "1.16.0",
"tslint-microsoft-contrib": "~5.2.1",
"tsutils": "~3.5.0",
"typescript": "^3.1.6"
},
"scripts": {
"clean": "rimraf coverage build tmp",
"build": "tsc -p tsconfig.release.json",
"build:watch": "tsc -w -p tsconfig.release.json",
"lint": "tslint -t stylish --project \"tsconfig.json\"",
"test": "jest --coverage",
"test:watch": "jest --watch",
"postinstall": "npm run build",
"start": "node -r dotenv/config build/src/index.js"
},
"author": "Taco Haus (tacohaus@pm.me)",
"license": "MIT",
"dependencies": {
"@koa/cors": "^3.1.0",
"koa": "^2.6.2",
"koa-bodyparser": "^4.2.1",
"koa-jwt": "^3.5.1",
"koa-logger": "^3.2.0",
"koa-ratelimit": "^4.2.1",
"koa-router": "^7.4.0",
"node-input-validator": "^4.5.0"
}
}