-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 1004 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 1004 Bytes
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
{
"name": "absol-chat",
"version": "1.0.0",
"description": "A real-time socket-based chat system for Pokemon Absolute",
"repository": "https://github.com/Toxocious/Absolute-Chat.git",
"author": "Jess <toxocious@gmail.com>",
"license": "MIT",
"private": false,
"main": "./build/server/index.js",
"scripts": {
"build": "tsc -b ./src/server && npx rollup -c",
"dev": "nodemon ./src/server/index.ts",
"start": "node ./build/server/index.js",
"prod": "tsc -b ./src/server && npx rollup -c && node ./build/server/index.js"
},
"dependencies": {
"crypto-js": "^4.1.1",
"dotenv": "^16.0.0",
"mysql2": "^2.3.3",
"socket.io": "^4.5.0",
"socket.io-client": "^4.5.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@rollup/plugin-typescript": "^12.1.1",
"@types/crypto-js": "^4.1.1",
"@types/node": "^17.0.30",
"nodemon": "^2.0.16",
"rollup": "^4.26.0",
"tslib": "^2.3.1",
"ts-node": "^10.7.0",
"typescript": "^4.6.4"
}
}