-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
68 lines (68 loc) · 1.75 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
{
"name": "koa-nodejs-boilerplate",
"version": "1.0.0",
"main": "build/index.js",
"author": "Emmanuel Fallancy <[email protected]> (https://emmanuel.dev)",
"license": "MIT",
"keywords": [
"koa",
"boilerplate",
"typescript"
],
"scripts": {
"build": "tsc",
"format": "prettier --write '**/*.{js,ts}'",
"start": "yarn build && node build/index.js",
"start:dev": "nodemon --watch src -e ts --exec 'ts-node src/index.ts'",
"test": "jest"
},
"dependencies": {
"@koa/cors": "^3.0.0",
"koa": "^2.11.0",
"koa-bodyparser": "^4.2.1",
"koa-helmet": "^5.2.0",
"koa-joi-router": "^6.0.2",
"koa-pino-logger": "^2.1.3",
"uuid": "^7.0.1"
},
"devDependencies": {
"@emmafallancy/typescript-config": "^1.1.0",
"@shopify/jest-koa-mocks": "^2.2.2",
"@types/jest": "^25.1.3",
"@types/koa": "^2.11.2",
"@types/koa-bodyparser": "^4.3.0",
"@types/koa-helmet": "^3.1.2",
"@types/koa-joi-router": "^5.2.3",
"@types/koa-pino-logger": "^2.1.6",
"@types/koa__cors": "^3.0.1",
"@types/node": "^13.7.7",
"@types/supertest": "^2.0.8",
"@types/uuid": "^7.0.0",
"@typescript-eslint/eslint-plugin": "^2.21.0",
"@typescript-eslint/parser": "^2.21.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-prettier": "^3.1.2",
"husky": "^4.2.3",
"jest": "^25.1.0",
"lint-staged": "^10.0.8",
"nodemon": "^2.0.2",
"prettier": "^1.19.1",
"pretty-quick": "^2.0.1",
"supertest": "^4.0.2",
"ts-jest": "^25.2.1",
"ts-node": "^8.6.2",
"typescript": "^3.8.3"
},
"lint-staged": {
"*.{js,ts}": [
"pretty-quick",
"eslint"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}