-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.62 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
52
53
54
{
"name": "@jpbm135/template",
"version": "1.0.0",
"description": "",
"scripts": {
"build:clean": "del-cli dist",
"build:check": "tsc --noEmit",
"build:esm": "swc ./src --out-dir ./dist",
"build": "yarn build:clean && yarn build:check && yarn build:esm",
"lint": "prettier --check . && eslint src --ext ts",
"format": "prettier --write . && eslint src --ext ts --fix",
"fmt": "yarn format",
"start": "env-cmd node --enable-source-maps dist/index.js",
"start:dev": "yarn build && yarn dev",
"dev": "env-cmd node --enable-source-maps dist/index.js",
"deploy:commands": "env-cmd node --enable-source-maps dist/deploy.js",
"deploy:global": "env-cmd node --enable-source-maps dist/deploy.js --global",
"server:update": "git pull && yarn --immutable && yarn build && yarn deploy:commands && pm2 restart",
"update": "yarn upgrade-interactive"
},
"type": "module",
"keywords": [],
"author": "JPBM135 <[email protected]>",
"license": "AGPL-3.0",
"private": true,
"dependencies": {
"@discordjs/rest": "^2.2.0",
"@yuudachi/framework": "^0.1.4",
"discord-api-types": "^0.37.67",
"discord.js": "^14.14.1",
"postgres": "^3.4.3",
"postgresql": "^0.0.1",
"reflect-metadata": "^0.1.14",
"tsyringe": "^4.8.0",
"undici": "^5.28.2",
"yarn": "^1.22.21"
},
"devDependencies": {
"@swc/cli": "^0.1.63",
"@swc/core": "^1.3.102",
"@types/node": "^20.10.6",
"cpy-cli": "^5.0.0",
"del-cli": "^5.1.0",
"env-cmd": "^10.1.0",
"eslint": "^8.56.0",
"eslint-config-neon": "^0.1.57",
"prettier": "^2.8.8",
"typescript": "^5.1.0"
},
"engines": {
"node": ">=17.9.0"
},
"packageManager": "[email protected]"
}