forked from robinhuy/fake-api-nodejs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 959 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
{
"name": "fake-api-nodejs",
"version": "1.0.0",
"description": "Fake API using NodeJS + JSON Server + Socket.IO + GraphQL",
"type": "module",
"exports": "./server.js",
"scripts": {
"start": "node server.js",
"dev": "nodemon server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/robinhuy/fake-rest-api-nodejs.git"
},
"keywords": [
"json-server",
"rest-api"
],
"author": "Robin Huy",
"license": "MIT",
"bugs": {
"url": "https://github.com/robinhuy/fake-api-nodejs/issues"
},
"homepage": "https://github.com/robinhuy/fake-api-nodejs#readme",
"dependencies": {
"cors": "^2.8.5",
"express-graphql": "^0.12.0",
"formidable": "^2.1.1",
"graphql": "^16.8.0",
"http-proxy-middleware": "^2.0.6",
"json-server": "^0.17.3",
"jsonwebtoken": "^9.0.2",
"lowdb": "^5.1.0",
"socket.io": "^4.7.2"
},
"devDependencies": {
"nodemon": "^2.0.22"
}
}