-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
67 lines (67 loc) · 1.9 KB
/
package.json
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
{
"name": "sealog-server",
"version": "2.3.4",
"license": "MIT",
"description": "Sealog event-logging server",
"bugs": {
"url": "https://github.com/oceandatatools/sealog-server/issues"
},
"main": "server.js",
"scripts": {
"start": "NODE_ENV=production node server.js",
"start-debug": "NODE_ENV=debug node server.js",
"start-demo-vehicle": "NODE_ENV=demo-vehicle node server.js",
"start-demo-vessel": "NODE_ENV=demo-vessel node server.js",
"start-test": "lab -v **/*.test.js",
"start-devel": "NODE_ENV=development npm-run-all --parallel lint start:server",
"start:server": "nodemon server.js",
"lint": "eslint . --ext .js",
"lint-fix": "eslint . --ext .js --fix"
},
"author": "Webb Pinner",
"homepage": "https://github.com/oceandatatools/sealog-server",
"private": false,
"repository": {
"type": "git",
"url": "https://github.com/oceandatatools/sealog-server.git"
},
"keywords": [
"hapi",
"eventlogging"
],
"dependencies": {
"@hapi/glue": "^9.0.1",
"@hapi/hapi": "^21.3.10",
"@hapi/inert": "^7.1.0",
"@hapi/nes": "^13.0.1",
"@hapi/vision": "^7.0.3",
"@json2csv/node": "^7.0.6",
"axios": "^1.7.7",
"bcryptjs": "^2.4.3",
"check-disk-space": "^3.4.0",
"deepcopy": "^2.1.0",
"hapi-auth-jwt2": "^10.6.0",
"hapi-mongodb": "^10.0.3",
"hapi-pino": "^12.1.0",
"hapi-swagger": "^17.3.0",
"joi": "^17.13.3",
"mkdirp": "^3.0.1",
"mongodb": "^4.17.2",
"node-mailjet": "^6.0.6",
"nodemailer": "^6.9.15",
"nodemailer-mailgun-transport": "^2.1.5",
"nodemon": "^3.1.7",
"pino-pretty": "^10.3.1",
"read-pkg": "^9.0.1",
"tmp": "^0.2.3"
},
"devDependencies": {
"@hapi/code": "^9.0.3",
"@hapi/eslint-plugin": "^6.0.0",
"@hapi/lab": "^25.3.1",
"blipp": "^4.0.2",
"eslint": "^8.57.1",
"eslint-plugin-import": "^2.31.0",
"npm-run-all": "^4.1.5"
}
}