-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
56 lines (56 loc) · 1.53 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
{
"name": "crosswalk",
"version": "1.5.0",
"description": "Type-safe express routing with TypeScript",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"author": "Dan Vanderkam <danvk@sidewalklabs.com>",
"license": "MIT",
"scripts": {
"test": "jest",
"lint": "eslint . --ext .ts,.tsx",
"format": "prettier --write 'src/**/*.ts'",
"format:check": "prettier --check 'src/**/*.ts'",
"update-test-schema": "typescript-json-schema --required --noExtraProps --strictNullChecks src/__tests__/api.ts API --out src/__tests__/api.schema.json"
},
"repository": {
"type": "git",
"url": "https://github.com/danvk/crosswalk.git"
},
"bugs": {
"url": "https://github.com/danvk/crosswalk/issues"
},
"keywords": [
"express",
"router",
"jsonschema",
"typescript"
],
"devDependencies": {
"@types/express": "^4.17.13",
"@types/jest": "^26.0.15",
"@types/supertest": "^2.0.10",
"@types/swagger-ui-express": "^4.1.2",
"@typescript-eslint/eslint-plugin": "^5.22.0",
"@typescript-eslint/parser": "^5.22.0",
"body-parser": "^1.19.0",
"eslint": "^8.15.0",
"eslint-plugin-expect-type": "^0.2.0",
"express": "^4.17.2",
"jest": "^28.1.0",
"prettier": "^2.2.0",
"supertest": "^6.0.1",
"ts-jest": "^28.0.2",
"typescript": "4.3",
"typescript-json-schema": "^0.43.0"
},
"dependencies": {
"ajv": "^6.12.6",
"path-to-regexp": "^6.2.0"
},
"peerDependencies": {
"@types/express": "^4",
"express": "^4",
"typescript": "^4.1"
}
}