-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
38 lines (38 loc) · 970 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
{
"name": "node-rest-template",
"version": "0.0.1",
"description": "Template for a Node.js based REST API",
"main": "index.js",
"scripts": {
"lint": "eslint index.js test/test.spec.js",
"lint-fix": "eslint --fix index.js test/test.spec.js",
"start-dev": "nodemon index.js",
"start": "node index.js",
"test": "npm run lint && mocha test/test.spec.js --exit"
},
"keywords": [
"Node",
"REST",
"API",
"Template"
],
"author": "C. Mayer (meggsimum)",
"license": "BSD-2-Clause",
"dependencies": {
"body-parser": "^1.20.0",
"express": "^4.18.1",
"helmet": "^5.0.2",
"pino": "^7.11.0",
"pino-pretty": "^7.6.1"
},
"devDependencies": {
"eslint": "^8.15.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.0.0",
"mocha": "^10.0.0",
"nodemon": "^2.0.16",
"supertest": "^6.2.3"
}
}