-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.01 KB
/
Copy pathpackage.json
File metadata and controls
49 lines (49 loc) · 1.01 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
45
46
47
48
49
{
"name": "webtech-lab-3",
"version": "1.0.0",
"description": "WebTech demo lab",
"authors": [
"david worms <david@adaltas.com>",
"kevin frydman <kevin.frydman@twinkle-app.com>"
],
"scripts": {
"start": "nodemon ./bin/server.js",
"test": "NODE_ENV=testing mocha 'test/**/*.js'",
"lint": "eslint ."
},
"dependencies": {
"body-parser": "1.19.0",
"express": "4.17.1",
"jsonwebtoken": "^8.5.1",
"level": "6.0.1",
"nodemon": "^2.0.7",
"uuid": "8.3.2"
},
"devDependencies": {
"eslint": "^7.20.0",
"eslint-config-airbnb-base": "^18.2.1",
"eslint-plugin-import": "^2.22.1",
"mocha": "8.1.3",
"should": "13.2.3",
"supertest": "4.0.2"
},
"keywords": [
"web",
"ece",
"nodejs",
"express",
"mocha"
],
"license": "MIT",
"main": "app/index.js",
"mocha": {
"throw-deprecation": true,
"require": [
"should"
],
"inline-diffs": true,
"timeout": 40000,
"reporter": "spec",
"recursive": true
}
}