-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
60 lines (60 loc) · 1.58 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
{
"name": "@reactor4/forklift",
"version": "2.3.0",
"description": "Express.js middleware for handling request and response validation, serialization and more",
"main": "lib/index.js",
"directories": {
"src": "src",
"lib": "lib",
"test": "test"
},
"scripts": {
"test": "jest",
"build": "rm -rf lib/ && tsc --declaration"
},
"repository": {
"type": "git",
"url": "git+https://github.com/reactor-studio/forklift.git"
},
"keywords": [
"express.js",
"validation"
],
"author": "Reactor Studio",
"license": "ISC",
"bugs": {
"url": "https://github.com/reactor-studio/forklift/issues"
},
"homepage": "https://github.com/reactor-studio/forklift#readme",
"dependencies": {
"error-to-json": "^1.1.0",
"express": "^4.17.1",
"lodash": "^4.17.20",
"tv4": "^1.3.0"
},
"resolutions": {
"@types/express-serve-static-core": "4.17.12"
},
"devDependencies": {
"@types/express": "^4.17.8",
"@types/jest": "^26.0.3",
"@types/lodash": "^4.14.161",
"@types/node": "^14.6.4",
"@types/supertest": "^2.0.10",
"@types/tv4": "^1.2.29",
"@typescript-eslint/eslint-plugin": "^4.0.1",
"@typescript-eslint/parser": "^4.0.1",
"eslint": "^7.8.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-config-prettier": "^6.3.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jest": "^22.17.0",
"eslint-plugin-prettier": "^3.1.0",
"jest": "^26.4.2",
"jest-express": "^1.12.0",
"prettier": "^2.1.1",
"supertest": "^4.0.2",
"ts-jest": "^26.3.0",
"typescript": "^4.0.2"
}
}