-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 649 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 649 Bytes
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
{
"name": "restful-api",
"version": "2.0.0",
"description": "A RESTFul API example built with Expressjs",
"main": "src/server.js",
"scripts": {
"start": "node .",
"test": "mocha",
"lint:eslint": "eslint .",
"lint:eslint:fix": "eslint . --fix"
},
"keywords": [
"restful",
"api",
"node.js",
"express"
],
"author": "Daniel (https://github.com/SFallTech)",
"dependencies": {
"compression": "^1.7.4",
"eslint": "^6.7.2",
"express": "^4.17.1",
"express-rate-limit": "^5.0.0",
"mocha": "^6.2.2",
"morgan": "^1.9.1"
},
"devDependencies": {
"rethinkdbdash": "^2.3.31"
}
}