generated from badgateway/api-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 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
73
74
{
"name": "@badgateway/api-starter",
"version": "0.0.1",
"description": "Minimal Bad Gateway API Starter Template",
"main": "dist/index.js",
"scripts": {
"prepublishOnly": "make build",
"build": "tsc",
"start": "make start",
"start:watch": "tsc-watch --onSuccess 'node dist/index.js'",
"watch": "tsc --watch",
"lint": "eslint --quiet 'src/*.ts'",
"fix": "eslint --quiet 'src/**/*.ts' --fix",
"test": "make lint test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/badgateway/api-starter.git"
},
"files": [
"package.json",
"README.md",
"dist",
"LICENSE"
],
"author": "Evert Pot (https://evertpot.com/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/badgateway/api-starter/issues"
},
"homepage": "https://github.com/badgateway/api-starter#readme",
"devDependencies": {
"@types/chai": "^4.2.14",
"@types/mocha": "^8.2.0",
"@types/node": "^14.14.20",
"@typescript-eslint/eslint-plugin": "^4.12.0",
"@typescript-eslint/parser": "^4.12.0",
"chai": "^4.2.0",
"eslint": "^7.17.0",
"hal-types": "^1.6.1",
"mocha": "^8.2.1",
"nyc": "^15.1.0",
"ts-node": "^9.1.1",
"tsc-watch": "^4.2.9",
"typescript": "^4.1.3"
},
"types": "dist/",
"nyc": {
"extension": [
".ts"
]
},
"dependencies": {
"@curveball/accesslog": "^0.2.0",
"@curveball/bodyparser": "^0.4.6",
"@curveball/controller": "^0.3.0",
"@curveball/core": "^0.15.0",
"@curveball/problem": "^0.2.2",
"@curveball/router": "^0.2.4",
"dotenv": "^8.2.0",
"dotenv-defaults": "^2.0.1",
"hal-browser": "^0.8.6",
"mysql2": "^2.2.5"
},
"mocha": {
"require": "ts-node/register",
"recursive": true,
"extension": [
"ts",
"js",
"tsx"
]
}
}