-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.24 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
{
"name": "@appgeist/restful-api",
"version": "1.5.6",
"description": "An opinionated, convention-over-configuration Express-based API restful server featuring yup validation",
"keywords": [
"api",
"server",
"validation",
"yup",
"rest",
"restful"
],
"main": "index.js",
"repository": "https://github.com/appgeist/restful-api",
"bugs": {
"url": "https://github.com/appgeist/restful-api/issues"
},
"author": {
"name": "Ionut-Cristian Florescu",
"email": "ionut.florescu@gmail.com",
"url": "https://github.com/icflorescu"
},
"license": "ISC",
"devDependencies": {
"@appgeist/eslint-config-base": "^1.3.1",
"@types/chalk": "^2.2.0",
"@types/express": "^4.17.6",
"@types/fs-readdir-recursive": "^1.0.0",
"@types/lodash": "^4.14.150",
"@types/pluralize": "^0.0.29",
"@types/underscore.string": "^0.0.38",
"@types/yup": "^0.28.0",
"http-status-codes": "^1.4.0",
"yup": "^0.28.4"
},
"dependencies": {
"chalk": "^4.0.0",
"express": "^4.17.1",
"fs-readdir-recursive": "^1.1.0",
"lodash": "^4.17.15",
"pluralize": "^8.0.0",
"underscore.string": "^3.3.5"
},
"peerDependencies": {
"http-status-codes": "^1.4.0",
"yup": "^0.28.4"
}
}