-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.59 KB
/
Copy pathpackage.json
File metadata and controls
69 lines (69 loc) · 1.59 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "livemap",
"version": "1.0.0",
"description": "Web server for live map viewing",
"type": "module",
"dependencies": {
"ajv": "^8.20.0",
"ajv-formats": "^3.0.0",
"bcrypt": "^6.0.0",
"config": "^4.4.2",
"connect-flash": "~0.1.0",
"connect-pg-simple": "~10.0.0",
"cookie-parser": "^1.4.7",
"express": "~5.2.1",
"express-rate-limit": "^8.6.2",
"express-session": "^1.19.0",
"jsonwebtoken": "~9.0.3",
"morgan": "~1.11.0",
"mqtt": "^5.15.2",
"passport": "~0.7.0",
"passport-local": "~1.0.0",
"pg": "^8.23.0",
"pg-connection-string": "^2.10.0",
"pug": "^3.0.4",
"serve-favicon": "~2.5.1",
"socket.io": "^4.8.3",
"winston": "^3.19.0",
"xml2js": "^0.6.2"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"aedes": "^1.1.1",
"c8": "^12.0.0",
"chai": "^6.2.2",
"chai-http": "^5.1.2",
"eslint": "^10.9.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.6",
"globals": "^17.11.0",
"mocha": "^11.8.0",
"node-mocks-http": "^1.18.1",
"prettier": "^3.9.6",
"sinon": "^22.1.0",
"socket.io-client": "^4.8.3"
},
"engines": {
"node": ">=24"
},
"scripts": {
"format": "prettier src tests --write",
"lint": "eslint src tests",
"start": "node src/server.js",
"test": "NODE_ENV=test mocha tests --color --exit",
"test:coverage": "c8 npm run test"
},
"c8": {
"all": true,
"include": [
"src/**"
],
"reporter": [
"html",
"text",
"lcov"
]
},
"author": "edenb",
"license": "MIT"
}