This repository has been archived by the owner on Jul 30, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
51 lines (51 loc) · 1.67 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
{
"name": "jaotan-659",
"version": "1.0.0",
"description": "",
"author": "Tomachi",
"private": true,
"main": "dist/index.js",
"repository": "[email protected]:jaoafa/jaotan-659.git",
"scripts": {
"start": "cross-env NODE_ENV=\"production\" ts-node -r tsconfig-paths/register ./src/main.ts",
"dev": "cross-env NODE_ENV=\"development\" ts-node-dev -r tsconfig-paths/register ./src/main.ts",
"compile": "tsc -p .",
"compile:test": "tsc -p . --noEmit",
"package": "run-s clean compile packing",
"packing": "ncc build ./dist/main.js -o output/",
"clean": "rimraf dist output",
"lint": "run-p -c lint:prettier lint:eslint lint:tsc",
"lint:prettier": "prettier --check src",
"lint:eslint": "eslint . -c eslint.config.mjs",
"lint:tsc": "tsc",
"fix": "run-s fix:prettier fix:eslint",
"fix:eslint": "eslint . -c eslint.config.mjs --fix",
"fix:prettier": "prettier --write src"
},
"devDependencies": {
"@book000/eslint-config": "1.6.10",
"@discordjs/builders": "1.8.2",
"@types/config": "3.3.4",
"@types/node": "20.14.13",
"@types/node-cron": "3.0.11",
"@vercel/ncc": "0.38.1",
"config": "3.3.12",
"cross-env": "7.0.3",
"discord.js": "14.14.1",
"eslint": "9.8.0",
"eslint-config-standard": "17.1.0",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-n": "17.10.1",
"eslint-plugin-promise": "7.0.0",
"mysql2": "3.11.0",
"node-cron": "3.0.3",
"prettier": "3.3.3",
"reflect-metadata": "0.2.2",
"ts-node": "10.9.2",
"ts-node-dev": "2.0.0",
"typeorm": "0.3.20",
"typeorm-naming-strategies": "4.1.0",
"typescript": "5.4.5",
"yarn-run-all": "3.1.1"
}
}