-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.11 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.11 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
44
{
"name": "questioner-server",
"version": "1.0.0",
"description": "Node.js backend server for a Crowd-source Questioner Application",
"main": "app.js",
"scripts": {
"test": "mocha \"./server/test/*.spec.js*\" --exit",
"lint": "eslint app.js",
"start": "nodemon ./server/app.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tobechukwuobitube/questioner-app.git"
},
"keywords": [
"Questioner",
"Meetup",
"Questions",
"Bootcamp"
],
"author": "Tobechukwu Obitube",
"license": "ISC",
"bugs": {
"url": "https://github.com/tobechukwuobitube/questioner-app/issues"
},
"homepage": "https://github.com/tobechukwuobitube/questioner-app#readme",
"dependencies": {
"body-parser": "1.18.3",
"chai": "4.2.0",
"chai-http": "4.2.1",
"express": "4.16.4",
"mocha": "5.2.0",
"morgan": "1.9.1",
"nodemon": "1.18.9"
},
"devDependencies": {
"eslint": "5.12.0",
"eslint-config-airbnb-base": "13.1.0",
"eslint-plugin-import": "2.14.0"
},
"engines": {
"node": "10.15.0"
}
}