-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
83 lines (83 loc) · 1.83 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
80
81
82
83
{
"name": "volley",
"version": "1.0.0",
"description": "Forward client-side metrics to Datadog",
"main": "src/index.js",
"repository": "https://github.com/artsy/volley",
"author": "Alan Johnson",
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"start:debug": "node --inspect dist/index.js",
"dev": "yarn build && yarn start",
"test": "jest"
},
"license": "MIT",
"private": true,
"engines": {
"node": "14"
},
"prettier": {
"bracketSpacing": true,
"semi": false,
"singleQuote": true,
"trailingComma": "es5"
},
"lint-staged": {
"*.js": [
"prettier --write --single-quote --print-width 80 --no-semi",
"git add"
]
},
"dependencies": {
"@koa/cors": "2.2.3",
"@koa/router": "10.0.0",
"@sentry/node": "5.11.1",
"dd-trace": "0.36.2",
"dotenv": "8.2.0",
"ip-address": "6.1.0",
"koa": "2.5.1",
"koa-body": "2.5.0",
"koa-sslify": "5.0.0",
"node-dogstatsd": "0.0.7"
},
"devDependencies": {
"@types/jest": "26.0.23",
"@types/koa": "2.13.1",
"@types/koa-sslify": "4.0.1",
"@types/koa__cors": "3.0.2",
"@types/koa__router": "8.0.4",
"@types/supertest": "2.0.11",
"jest": "26.6.3",
"jest-junit": "10.0.0",
"supertest": "4.0.2",
"ts-jest": "26.5.6",
"typescript": "4.8.4"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"setupFiles": [
"dotenv/config",
"<rootDir>/test.config.js"
],
"coverageDirectory": "./coverage/",
"collectCoverage": true,
"coverageReporters": [
"lcov"
],
"coveragePathIgnorePatterns": [
"/node_modules/"
],
"reporters": [
"default",
"jest-junit"
],
"testPathIgnorePatterns": [
"<rootDir>/dist"
]
},
"jest-junit": {
"outputDirectory": "reports"
}
}