-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 1.83 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 1.83 KB
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": "test-ts",
"private": true,
"version": "1.0.0",
"main": "build/server.js",
"license": "MIT",
"devDependencies": {
"@types/chai": "4.1.7",
"@types/chai-http": "3.0.5",
"@types/glob": "7.1.1",
"@types/jsonwebtoken": "8.3.2",
"@types/koa": "2.0.48",
"@types/koa-bodyparser": "4.3.0",
"@types/koa-router": "7.0.40",
"@types/mocha": "5.2.5",
"@types/nock": "10.0.3",
"@types/node": "10.12.15",
"@types/sinon": "7.0.0",
"@types/sinon-chai": "3.2.2",
"@types/uuid": "3.4.4",
"casual": "1.6.2",
"chai": "4.2.0",
"chai-http": "4.2.0",
"husky": "1.2.1",
"lint-staged": "8.1.0",
"mocha": "5.2.0",
"nodemon": "1.18.9",
"prettier": "1.15.3",
"sinon": "7.2.2",
"sinon-chai": "3.3.0",
"ts-node": "7.0.1",
"tslint": "5.11.0",
"tslint-config-prettier": "1.17.0",
"typescript": "3.2.2",
"typescript-tslint-plugin": "0.2.1"
},
"scripts": {
"build": "tsc",
"build:tests": "tsc -p test/tsconfig.json",
"build:watch": "tsc --watch",
"lint": "tslint -c tslint.json -p tsconfig.json -t codeFrame '{src,test}/**/*.ts'",
"start": "node build/api.js",
"start:watch": "nodemon",
"test": "mocha --reporter dot",
"test:watch": "yarn test --watch"
},
"dependencies": {
"awilix": "4.2.2",
"axios": "0.19.0",
"jsonwebtoken": "8.5.1",
"koa": "2.7.0",
"koa-bodyparser": "4.2.1",
"koa-compose": "4.1.0",
"koa-router": "7.4.0",
"nock": "10.0.6",
"oddlog": "3.0.1",
"source-map-support": "0.5.9",
"uuid": "3.3.2"
},
"lint-staged": {
"*.ts": [
"prettier --config .prettierrc --write",
"tslint -c tslint.json --fix",
"git add"
]
},
"husky": {
"hooks": {
"post-checkout": "yarn",
"post-merge": "yarn",
"pre-commit": "lint-staged"
}
}
}