-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 2.22 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
75
76
77
78
79
{
"name": "resty-api",
"version": "1.0.0",
"description": "",
"main": "index.ts",
"scripts": {
"start": "ts-node ./src",
"debug": "tsnd --transpileOnly --inspect -- ./src",
"debug:watch": "tsnd --respawn --inspect -- ./src",
"test": "jest --coverage --runInBand --detectOpenHandles ./test",
"test:watch": "jest --watch --runInBand --detectOpenHandles ./test",
"lint": "eslint ./src --ext .ts"
},
"author": "Dan Halson",
"license": "",
"dependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/jest": "^25.1.2",
"@types/jsonwebtoken": "^8.3.7",
"@types/koa": "^2.11.0",
"@types/koa-bodyparser": "^4.3.0",
"@types/koa-logger": "^3.1.1",
"@types/koa-router": "^7.4.0",
"@types/lowdb": "^1.0.9",
"@types/ramda": "^0.26.41",
"@types/typescript": "^2.0.0",
"@types/uniqid": "^4.1.3",
"bcryptjs": "^2.4.3",
"jest": "^25.1.0",
"jsonwebtoken": "^8.5.1",
"koa": "^2.11.0",
"koa-bodyparser": "^4.2.1",
"koa-compose": "^4.1.0",
"koa-jwt": "^3.6.0",
"koa-logger": "^3.2.1",
"koa-router": "^8.0.7",
"lowdb": "^1.0.0",
"ramda": "^0.27.0",
"supertest": "^4.0.2",
"ts-node": "^8.6.2",
"typescript": "^3.7.5",
"uniqid": "^5.2.0"
},
"devDependencies": {
"@babel/core": "^7.8.3",
"@babel/preset-env": "^7.8.3",
"@babel/preset-typescript": "^7.8.3",
"@types/node": "^13.1.8",
"@types/supertest": "^2.0.8",
"@typescript-eslint/eslint-plugin": "^2.19.0",
"@typescript-eslint/parser": "^2.19.0",
"babel-jest": "^24.9.0",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-config-prettier": "^6.10.0",
"eslint-import-resolver-typescript": "^2.0.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-jest": "^23.7.0",
"eslint-plugin-json": "^2.0.1",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-react": "^7.18.3",
"husky": "^4.2.1",
"jest-cli": "^25.1.0",
"prettier": "^1.19.1",
"resolve-cwd": "^3.0.0",
"ts-jest": "^25.0.0",
"ts-node-dev": "^1.0.0-pre.44",
"tslint": "^6.0.0"
},
"husky": {
"hooks": {
"pre-commit": [
"npm run lint",
"npm test"
]
}
}
}