-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 908 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
{
"name": "rest-demo-node-backend",
"version": "1.0.0",
"private": true,
"description": "A simple demonstration of a RESTful web service in Node.js",
"main": "server.js",
"scripts": {
"lint": "eslint --ext .js .",
"start-dev": "NODE_ENV=development node server.js",
"start": "NODE_ENV=production node server.js",
"test": "PORT=7777 mocha --exit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bmarcotte/rest-demo-node-backend.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/bmarcotte/rest-demo-node-backend/issues"
},
"homepage": "https://github.com/bmarcotte/rest-demo-node-backend#readme",
"devDependencies": {
"chai": "^4.2.0",
"chai-http": "^4.3.0",
"eslint": "^8.0.0",
"mocha": "^9.0.0"
},
"dependencies": {
"body-parser": "^1.19.0",
"express": "^4.17.1",
"sqlite3": "^5.0.0"
}
}