-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
29 lines (29 loc) · 901 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
{
"name": "GreenEnergy",
"version": "1.0.1",
"author": "Jack Dalrymple Hamilton",
"description": "Green Energy is an established utility company, and they have approached us to create a service for accepting meter reads. The main goal here is to *accept*, *store* and *present* meter readings based on a customer's unique identifier.",
"main": "index.js",
"license": "MIT",
"dependencies": {
"body-parser": "^1.18.2",
"debug": "^3.1.0",
"express": "^4.16.3",
"mongoose": "^5.0.15",
"morgan": "^1.9.0",
"nodemon": "^1.17.3",
"uuid": "^3.2.1"
},
"devDependencies": {
"chai": "^4.1.2",
"chai-datetime": "^1.5.0",
"chai-http": "^4.0.0",
"eslint": "^4.19.1",
"eslint-config-google": "^0.9.1",
"mocha": "^5.1.1"
},
"scripts": {
"start": "set NODE_ENV=dev && node server.js",
"test": "set NODE_ENV=test && mocha --exit"
}
}