-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.67 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.67 KB
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": "ryu-socket",
"version": "0.0.1",
"description": "A WebSocket for my own website.",
"main": "dist/launcher.js",
"author": "ryuzaki#0001",
"license": "MIT",
"private": true,
"engines": {
"node": "^18 || >=19.0.0",
"npm": "^9 || >=10.0.0"
},
"scripts": {
"build": "yarn install && npx tsc --project tsconfig.json --pretty --noEmitOnError && echo Arquivos compilados com sucesso!",
"clean-win": "rmdir /s /q dist",
"clean-lin": "rm -rf dist",
"start": "node dist/launcher.js",
"dev": "node --watch dist/launcher.js --ext js,ts,ejs,css --exec ts-node src/server.ts",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test": "jest"
},
"dependencies": {
"axios": "^1.8.4",
"body-parser": "^2.2.0",
"cors": "^2.8.5",
"discord-api-types": "^0.37.120",
"dotenv": "^16.5.0",
"ejs": "^3.1.10",
"express": "^5.1.0",
"jest": "^29.7.0",
"redis": "^4.7.0",
"useragent": "^2.3.0",
"winston": "^3.17.0",
"ws": "^8.18.1"
},
"devDependencies": {
"@eslint/js": "^9.24.0",
"@jest/globals": "^29.7.0",
"@types/cors": "^2.8.17",
"@types/ejs": "^3.1.5",
"@types/eslint__js": "^9.14.0",
"@types/express": "^5.0.1",
"@types/jest": "^29.5.14",
"@types/node": "^22.14.1",
"@types/supertest": "^6.0.3",
"@types/useragent": "^2.3.4",
"@types/ws": "^8.18.1",
"@typescript-eslint/eslint-plugin": "^8.29.1",
"@typescript-eslint/parser": "^8.29.1",
"eslint": "^9.24.0",
"eslint-config-prettier": "^10.1.2",
"eslint-plugin-jest": "^28.11.0",
"eslint-plugin-prettier": "^5.2.6",
"prettier": "^3.5.3",
"supertest": "^7.1.0",
"ts-jest": "^29.3.1",
"ts-node": "^10.9.2",
"typescript": "^5.8.3",
"typescript-eslint": "^8.29.1"
}
}