-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 970 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 970 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
31
32
33
34
35
36
37
38
39
{
"name": "bare-express-server",
"author": "Evan Bechtol <evanbechtol@gmail.com>",
"version": "1.1.1",
"description": "",
"main": "index.js",
"scripts": {
"lint": "eslint -c .eslintrc.json ./* --ext .js",
"test": "mocha test/* --reporter spec",
"start": "node index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/evanbechtol/bare-express.git"
},
"bugs": {
"url": "https://github.com/evanbechtol/bare-express/issues"
},
"homepage": "https://github.com/evanbechtol/bare-express",
"dependencies": {
"body-parser": "^1.19.0",
"compression": "^1.7.1",
"express": "^4.21.2",
"mongoose": "^6.13.5",
"morgan": "^1.9.0",
"rotating-file-stream": "^1.3.2",
"winston": "^3.2.1"
},
"devDependencies": {
"chai": "^4.2.0",
"eslint": "^5.15.3",
"eslint-plugin-node": "^8.0.1",
"mocha": "^10.2.0",
"nyc": "^14.0.0"
},
"engines": {
"node": ">=6.0.0"
}
}