-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.12 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
{
"name": "esa-predictions",
"version": "0.0.1",
"description": "ESA API for storing user predictions for races",
"main": "src/index.js",
"homepage": "https://github.com/esamarathon/esa-predictions#readme",
"repository": "https://github.com/esamarathon/esa-predictions.git",
"author": "Christian Ruigrok <[email protected]>",
"license": "MIT",
"private": true,
"scripts": {
"build": "tsc",
"start": "node ./build/server.js",
"dev": "nodemon src/server.ts",
"dev:debug": "nodemon --inspect src/server.ts",
"lint": "eslint . --ext .ts"
},
"dependencies": {
"http-status-codes": "^1.3.2",
"koa": "^2.7.0",
"koa-helmet": "^5.0.0",
"koa-router": "^7.4.0",
"prettier": "^1.18.2"
},
"devDependencies": {
"@types/koa": "^2.0.49",
"@types/koa-helmet": "^3.1.2",
"@types/koa-router": "^7.0.42",
"@typescript-eslint/eslint-plugin": "^2.0.0",
"@typescript-eslint/parser": "^2.0.0",
"eslint": "^6.1.0",
"eslint-config-prettier": "^6.0.0",
"eslint-plugin-prettier": "^3.1.0",
"nodemon": "^1.19.1",
"ts-node": "^8.3.0",
"typescript": "^3.5.3"
}
}