-
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.15 KB
/
package.json
File metadata and controls
44 lines (44 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
44
{
"name": "interviewer",
"version": "0.0.1",
"description": "Interviewer is a REST service which allows users to sign up and register questions which they will be asked on a regular basis.",
"repository": {
"type": "git",
"url": "git+https://github.com/Simsso/Interviewer.git"
},
"keywords": [
"interviewer"
],
"author": "Timo Denk",
"license": "UNLICENSED",
"bugs": {
"url": "https://github.com/Simsso/Interviewer/issues"
},
"homepage": "https://github.com/Simsso/Interviewer#readme",
"main": "src/server.js",
"dependencies": {
"ajv": "^6.0.1",
"basic-auth": "^2.0.0",
"body-parser": "^1.18.2",
"dotenv": "^4.0.0",
"express": "^4.16.2",
"jsonwebtoken": "^8.1.0",
"lowdb": "^1.0.0",
"morgan": "^1.9.0",
"uuid": "^3.2.1"
},
"devDependencies": {
"assert": "^1.4.1",
"mocha": "^4.1.0",
"node-mocks-http": "^1.6.7",
"nodemon": "^1.14.11",
"nyc": "^11.4.1",
"proxyquire": "^1.8.0",
"sinon": "^4.3.0"
},
"scripts": {
"start": "node src/server.js",
"test": "./node_modules/.bin/nyc --reporter=text mocha --recursive",
"dev": "nodemon src/server.js"
}
}