-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.24 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.24 KB
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
40
41
42
43
{
"name": "node-express-docker-starter",
"version": "1.2.1",
"description": "Simple node hello world for testing deployments and starting new simple projects.",
"scripts": {
"lint": "eslint .",
"start": "node server",
"start:dev": "nodemon server.js",
"test": "eslint . && nyc --reporter=html --reporter=text-summary mocha --recursive",
"test:travis": "eslint . && nyc mocha --recursive && nyc report --reporter=text-lcov | coveralls"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jtwebman/node-express-docker-starter.git"
},
"main": "server.js",
"author": "JT Turner",
"license": "MIT",
"bugs": {
"url": "https://github.com/jtwebman/node-express-docker-starter/issues"
},
"homepage": "https://github.com/jtwebman/node-express-docker-starter#readme",
"dependencies": {
"config": "3.3.9",
"express": "4.18.2",
"stoppable": "1.1.0"
},
"engines": {
"node": ">= 18"
},
"devDependencies": {
"chai": "4.3.7",
"coveralls-next": "4.2.0",
"eslint": "8.46.0",
"eslint-config-google": "0.14.0",
"eslint-plugin-prettier": "5.0.0",
"mocha": "10.2.0",
"nodemon": "3.0.1",
"nyc": "15.1.0",
"prettier": "3.0.1",
"supertest": "6.3.3"
}
}