-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
96 lines (96 loc) · 2.53 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "beer-fest",
"version": "1.1.0",
"description": "Web app to display ale availability at the ACBF",
"exports": "./server.js",
"type": "module",
"scripts": {
"eslint": "eslint --ignore-path .gitignore .",
"prettier": "prettier --ignore-path .gitignore --write '**/*.js' '**/*.css' '**/*.md'",
"pretest": "npm run prettier && npm run eslint",
"test": "",
"load-test": "artillery run utils/websocket-load-test.yaml",
"docs": "jsdoc -c jsdoc.json",
"type-check": "tsc",
"update": "ncu -u --target minor",
"prepare": "husky"
},
"author": "guyfawcus",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/guyfawcus/beer-fest.js.git"
},
"engines": {
"node": "^20.11.x"
},
"dependencies": {
"bcryptjs": "^2.4.3",
"compression": "^1.7.4",
"connect-redis": "^7.1.1",
"cors": "^2.8.5",
"csv-parse": "^5.5.6",
"csv-stringify": "^6.5.0",
"ejs": "^3.1.10",
"express": "^4.19.2",
"express-enforces-ssl": "^1.1.0",
"express-flash": "0.0.2",
"express-session": "^1.18.0",
"express-socket.io-session": "^1.3.5",
"feature-policy": "^0.6.0",
"geojson": "^0.5.0",
"helmet": "^7.1.0",
"leaflet": "^1.9.4",
"pino": "^9.2.0",
"pino-pretty": "^11.2.1",
"redis": "^4.6.14",
"socket.io": "^4.7.5",
"socket.io-client": "^4.7.5",
"wikibase-sdk": "^10.0.2"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.6",
"@types/compression": "^1.7.5",
"@types/csvtojson": "^1.1.5",
"@types/ejs": "^3.1.5",
"@types/express": "^4.17.21",
"@types/express-enforces-ssl": "^1.1.4",
"@types/express-flash": "0.0.5",
"@types/express-session": "^1.18.0",
"@types/express-socket.io-session": "^1.3.9",
"@types/node": "^20.14.5",
"@types/redis": "^4.0.10",
"eslint": "^8.57.0",
"eslint-plugin-import": "^2.29.1",
"husky": "^9.0.11",
"jsdoc": "^4.0.3",
"npm-check-updates": "^16.14.20",
"prettier": "^3.3.2",
"standard": "^17.1.0"
},
"prettier": {
"printWidth": 120,
"semi": false,
"singleQuote": true,
"trailingComma": "none"
},
"eslintConfig": {
"extends": "standard",
"parserOptions": {
"ecmaVersion": "latest",
"sourceType": "module"
},
"rules": {
"camelcase": "off",
"object-shorthand": "off",
"prefer-promise-reject-errors": "off",
"space-before-function-paren": "off",
"import/no-unused-modules": [
1,
{
"unusedExports": true
}
]
}
}
}