-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.26 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.26 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
{
"name": "@api-ts/typed-express-router",
"version": "0.0.0-semantically-released",
"description": "Implement an HTTP specification with Express",
"author": "Patrick McLaughlin <patrickmclaughlin@bitgo.com>",
"license": "Apache-2.0",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"files": [
"dist/src/"
],
"scripts": {
"build": "tsc --build --incremental --verbose .",
"clean": "rm -rf -- dist",
"format": "prettier --check .",
"format:fix": "prettier --write .",
"test": "c8 --all node --require @swc-node/register --test test/*.ts"
},
"dependencies": {
"@api-ts/io-ts-http": "0.0.0-semantically-released",
"@types/express": "4.17.21",
"express": "4.21.2",
"fp-ts": "^2.0.0",
"io-ts": "2.1.3"
},
"peerDependencies": {
"@opentelemetry/api": "^1.0.0"
},
"peerDependenciesMeta": {
"@opentelemetry/api": {
"optional": true
}
},
"devDependencies": {
"@api-ts/superagent-wrapper": "0.0.0-semantically-released",
"@swc-node/register": "1.10.9",
"c8": "10.1.3",
"typescript": "4.7.4",
"@opentelemetry/sdk-trace-base": "1.30.1",
"@opentelemetry/sdk-trace-node": "1.30.1",
"@opentelemetry/api": "1.9.0"
},
"publishConfig": {
"access": "public"
}
}