-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
62 lines (62 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
{
"name": "backend",
"private": true,
"version": "3.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "NODE_ENV=test ./node_modules/.bin/mocha ./tests/index.js",
"test:helper": "NODE_ENV=test ./node_modules/.bin/mocha ./tests/helper/index.js",
"test:newman": "newman run postman.json",
"dev": "./node_modules/.bin/nodemon -i plugins -w . -w .env index.js",
"dev:plugin": "./node_modules/.bin/nodemon -w plugins -w . -w .env index.js",
"lint": "./node_modules/.bin/eslint .",
"lint:fix": "./node_modules/.bin/eslint --fix .",
"mocha": "./node_modules/.bin/mocha ./tests/index.js",
"debug": "NODE_ENV=debug node inspect index.js",
"build": "grunt build",
"build:docker": "grunt build:docker",
"release": "grunt release",
"db:export": "mongodump --db OpenHaus --archive=./demo-database.gz",
"db:import": "mongorestore --db OpenHaus --archive=./demo-database.gz",
"postinstall": "scripts/post-install.sh",
"publish": "grunt publish"
},
"engines": {
"node": ">=18.0.0"
},
"author": "Marc Stirner <[email protected]>",
"license": "ISC",
"dependencies": {
"bcrypt": "^5.1.0",
"body-parser": "^1.20.1",
"colors": "^1.4.0",
"dateformat": "^4.6.3",
"dns-packet": "^5.4.0",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"joi": "^17.6.4",
"jsonwebtoken": "^9.0.0",
"mongodb": "^4.11.0",
"mqtt-packet": "^8.1.2",
"semver": "^7.5.4",
"tar-stream": "^3.1.7",
"uuid": "^9.0.0",
"ws": "^8.10.0"
},
"devDependencies": {
"eslint": "^8.24.0",
"grunt": "^1.5.3",
"grunt-contrib-compress": "^2.0.0",
"grunt-contrib-uglify": "^5.0.1",
"grunt-env": "^1.0.1",
"grunt-run": "^0.8.1",
"husky": "^8.0.3",
"minimist": "^1.2.6",
"mocha": "^9.2.2",
"mocha.parallel": "^0.15.6",
"newman": "^6.0.0",
"nodemon": "^3.0.1",
"sinon": "^14.0.2"
}
}