forked from ppy/osu-notification-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1018 Bytes
/
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
{
"private": true,
"scripts": {
"build": "tsc",
"lint": "eslint --cache 'src/**/*.{js,ts}' '*.js'",
"serve": "node build/index.js",
"watch": "yarn run build --watch"
},
"name": "osu-notification-server",
"license": "AGPL-3.0",
"dependencies": {
"@types/cookie": "^0.3.2",
"@types/jsonwebtoken": "^8.3.0",
"@types/mysql2": "types/mysql2",
"@types/node": "^10.12.19",
"@types/redis": "^2.8.10",
"@types/ws": "^6.0.1",
"cookie": "^0.3.1",
"dotenv": "^16.0.1",
"hot-shots": "^6.2.0",
"jsonwebtoken": "^8.4.0",
"mysql2": "^1.6.4",
"php-serialize": "^4.0.2",
"redis": "^2.8.0",
"source-map-support": "^0.5.10",
"typescript": "^4.4.2",
"ws": "^6.1.3"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.31.0",
"@typescript-eslint/parser": "^4.31.0",
"eslint": "^7.15.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsdoc": "^30.7.8",
"eslint-plugin-typescript-sort-keys": "^1.7.0"
}
}