-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
62 lines (62 loc) · 1.56 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
{
"name": "exser",
"version": "2.0.0-beta.3",
"description": "API Server for real projects",
"main": "exser.js",
"scripts": {
"start": "node index.js rest-api",
"test": "node ./node_modules/jest/bin/jest.js --runInBand --forceExit",
"task-example": "node index.js tasks --name=example --mode=clear",
"dump": "node index.js dump"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ylabio/exser.git"
},
"keywords": [
"api",
"rest",
"node.js",
"express",
"swagger",
"mock"
],
"author": "Vladimir Shestakov",
"license": "MIT",
"bugs": {
"url": "https://github.com/ylabio/exser/issues"
},
"homepage": "https://github.com/ylabio/exser#readme",
"dependencies": {
"accept-language": "^3.0.18",
"ajv": "^8.5.0",
"ajv-formats": "^2.1.0",
"ajv-keywords": "^5.0.0",
"babel-eslint": "^10.1.0",
"bluebird": "^3.7.2",
"body-parser": "^1.19.0",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"deep-equal": "^2.0.5",
"escape-string-regexp": "4.0.0",
"eslint": "^7.27.0",
"express": "^4.17.1",
"express-xml-bodyparser": "^0.3.0",
"formidable": "^1.2.2",
"http-proxy": "^1.18.1",
"lodash.camelcase": "^4.3.0",
"lodash.isequal": "^4.5.0",
"lodash.upperfirst": "^4.3.1",
"merge-change": "^1.6.11",
"moment": "^2.29.1",
"mongodb": "^3.6.8",
"morgan": "^1.10.0",
"supertest": "^6.1.3",
"swagger-ui-dist": "^3.49.0",
"transliteration": "^2.2.0"
},
"devDependencies": {
"expect": "^26.6.2",
"jest": "^26.6.3"
}
}