-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.52 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
{
"name": "@fails-components/noteshandler",
"version": "1.2.6",
"description": "Supplies server side notes handling",
"author": "Marten Richter",
"license": "AGPL-3.0-or-later",
"repository": {
"type": "git",
"url": "git+https://github.com/fails-components/noteshandler.git"
},
"main": "src/server.js",
"source": "src/server.js",
"type": "module",
"engines": {
"node": ">=18"
},
"scripts": {
"start": "node src/server.js",
"test": "run-s test:lint",
"test:lint": "eslint ."
},
"devDependencies": {
"babel-eslint": "^10.0.3",
"classnames": "^2.2.6",
"cross-env": "^7.0.3",
"dotenv": "^10.0.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^7.2.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.4.1",
"eslint-plugin-promise": "^4.3.1",
"eslint-plugin-standard": "^4.1.0",
"gh-pages": "^5.0.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.4.1"
},
"files": [
"dist"
],
"dependencies": {
"@fails-components/config": "^1.3.0",
"@fails-components/security": "^1.3.2",
"@socket.io/redis-adapter": "^7.1.0",
"bson": "^4.7.0",
"cidr-matcher": "^2.1.1",
"cron": "^1.8.2",
"mongodb": "^3.7.3",
"redis": "^4.0.6",
"socket.io": "^4.8.0",
"uuid": "^8.3.2"
},
"nodemonConfig": {
"ignore": [
"files/*"
],
"delay": 2500
},
"publishConfig": {
"registry": "https://npm.pkg.github.com"
}
}