-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.18 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.18 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
{
"name": "blockbot2",
"version": "1.0.0",
"description": "",
"main": "src/index.js",
"scripts": {
"test": "jest",
"build": "babel src -d dist --extensions \".ts\" --copy-files --no-copy-ignored",
"generate-config-schema": "typescript-json-schema src/types/Config.ts FullConfig --required -o src/schema/config.schema.json",
"start": "npm run build && shx cp config.json dist/config.json && node dist/index.js",
"lint": "gts lint",
"clean": "gts clean",
"fix": "gts fix",
"posttest": "npm.cmd run lint"
},
"author": "",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.25.7",
"@babel/core": "^7.25.8",
"@babel/preset-env": "^7.25.8",
"@babel/preset-typescript": "^7.25.7",
"@eslint/js": "^9.12.0",
"@types/eslint__js": "^8.42.3",
"@types/node-schedule": "^2.1.7",
"eslint-plugin-unused-imports": "^3.2.0",
"gts": "^6.0.0",
"jest": "^27.5.1",
"shx": "^0.3.4",
"typescript": "^5.6.3",
"typescript-eslint": "^8.10.0",
"typescript-json-schema": "^0.63.0",
"@types/node": "^22.7.5"
},
"dependencies": {
"ajv": "^8.17.1",
"discord.js": "^14.16.3",
"node-schedule": "^2.1.1"
}
}