-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
35 lines (35 loc) · 1.02 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
{
"name": "emoji-bot",
"version": "0.2.2",
"main": "src/index.ts",
"author": "@camilla_ett",
"license": "MIT",
"devDependencies": {
"@types/node": "^22.5.5",
"@types/ws": "^8.5.12",
"eslint": "^9.11.0",
"globals": "^15.9.0",
"nodemon": "^2.0.22",
"ts-node": "^10.9.2",
"typescript": "^5.6.2",
"typescript-eslint": "^8.6.0"
},
"scripts": {
"watch": "npm run build:live",
"build": "tsc -p .",
"build:live": "nodemon --watch 'src/**/*.ts' --exec \"ts-node\" src/index.ts",
"start": "ts-node src/index.ts",
"lint": "eslint --fix .",
"api:build": "aspida"
},
"dependencies": {
"@aspida/axios": "^1.14.0",
"@typescript-eslint/eslint-plugin": "^8.6.0",
"@typescript-eslint/parser": "^8.6.0",
"aspida": "^1.14.0",
"axios": "^1.7.7",
"dotenv": "^16.4.5",
"ws": "^8.18.0"
},
"packageManager": "pnpm@9.11.0+sha512.0a203ffaed5a3f63242cd064c8fb5892366c103e328079318f78062f24ea8c9d50bc6a47aa3567cabefd824d170e78fa2745ed1f16b132e16436146b7688f19b"
}