-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
42 lines (42 loc) · 980 Bytes
/
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
{
"name": "api-now",
"version": "0.5.4",
"description": "Launch an API Server to serve a JSON, JS file, GraphQL or faker data with HTTPS support.",
"author": "Duc Nguyen",
"license": "MIT",
"homepage": "https://github.com/ngduc/api-now",
"repository": {
"type": "git",
"url": "https://github.com/ngduc/api-now.git"
},
"bugs": {
"url": "https://github.com/ngduc/api-now/issues"
},
"bin": {
"api-now": "./bin/index.js"
},
"scripts": {
"test": "jest"
},
"dependencies": {
"apollo-server-express": "^2.12.0",
"commander": "^3.0.1",
"express": "^4.17.1",
"faker": "^4.1.0",
"json-server": "^0.15.1",
"jsonwebtoken": "^8.5.1"
},
"devDependencies": {
"jest": "^24.9.0",
"mkdirp": "^0.5.1",
"server-ready": "^0.3.1",
"supertest": "^4.0.2",
"temp-write": "^4.0.0"
},
"resolutions": {
"minimist": "0.2.1",
"acorn": "6.4.1",
"kind-of": "6.0.3",
"handlebars": "4.3.0"
}
}