-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.3 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
{
"name": "changeme",
"version": "0.0.1",
"description": "",
"main": "dist/server.js",
"scripts": {
"watch": "nodemon -r dotenv/config --watch 'src/**/*' -e ts,tsx --exec ts-node ./src/index.ts | bunyan -o short",
"startdev": "node -r dotenv/config -r ts-node/register ./src/index.ts | bunyan -o short",
"eslint": "eslint --env node \"**/*.ts\" --ignore-pattern node_modules/",
"test": "jest --detectOpenHandles --colors"
},
"author": "Pablo Lopez",
"license": "ISC",
"devDependencies": {
"@types/bunyan": "^1.8.7",
"@types/jest": "^26.0.24",
"@types/koa-bunyan-logger": "^2.1.4",
"@types/koa-router": "^7.4.4",
"@types/koa__cors": "^3.0.3",
"@typescript-eslint/eslint-plugin": "^4.28.5",
"@typescript-eslint/parser": "^4.28.5",
"eslint": "^7.31.0",
"eslint-config-airbnb-typescript": "^12.3.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-prettier": "^3.4.0",
"jest": "^27.0.6",
"prettier": "^2.3.2",
"ts-jest": "^27.0.4",
"ts-node": "^10.1.0",
"typescript": "^4.3.5"
},
"dependencies": {
"@koa/cors": "^3.1.0",
"bunyan": "^1.8.15",
"dotenv": "^10.0.0",
"koa": "^2.13.1",
"koa-body": "^4.2.0",
"koa-bunyan-logger": "^2.1.0",
"koa-router": "^10.0.0"
}
}