-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
36 lines (36 loc) · 987 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
{
"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.5.1",
"@types/jsonwebtoken": "^9.0.2",
"@types/mysql2": "types/mysql2",
"@types/node": "^18.0.0",
"@types/ws": "^8.5.5",
"cookie": "^0.5.0",
"dotenv": "^16.3.1",
"hot-shots": "^10.0.0",
"ioredis": "^5.3.2",
"jsonwebtoken": "^9.0.1",
"mysql2": "^3.6.0",
"php-serialize": "^4.1.1",
"source-map-support": "^0.5.21",
"typescript": "^5.1.6",
"ws": "^8.13.0"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6.4.1",
"@typescript-eslint/parser": "^6.4.1",
"eslint": "^8.47.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-jsdoc": "^46.5.0",
"eslint-plugin-typescript-sort-keys": "^2.3.0"
}
}