-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.15 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.15 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": "ripe-banana",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"lint": "eslint .",
"pretest": "npm run lint",
"test": "npm run test:run",
"test:run": "mocha --recursive",
"test:unit": "npm run test:run -- ./test/unit",
"test:e2e": "npm run test:run -- ./test/e2e",
"test:watch": "nodemon --exec 'npm run -s test:run'",
"test:unit:watch": "nodemon --exec 'npm run -s test:unit'",
"test:e2e:watch": "nodemon --exec 'npm run -s test:e2e'",
"start": "node server.js",
"start:watch": "nodemon server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MariahAdams/ripe-banana.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/MariahAdams/ripe-banana/issues"
},
"homepage": "https://github.com/MariahAdams/ripe-banana#readme",
"devDependencies": {
"chai": "^4.1.2",
"chai-http": "^4.0.0",
"eslint": "^5.1.0",
"mocha": "^5.2.0",
"nodemon": "^1.18.3"
},
"dependencies": {
"dotenv": "^6.0.0",
"express": "^4.16.3",
"mongoose": "^5.2.4",
"morgan": "^1.9.0"
}
}