-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.13 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
{
"name": "general_store",
"version": "1.0.0",
"description": "",
"main": "dist/index.js",
"scripts": {
"build": "npx swc src -d dist --config-file .swcrc",
"start": "yarn format && yarn build && pm2 start ecosystem.config.js",
"start:local": "yarn build && node dist/src",
"clean": "rm -rf dist",
"format": "concurrently 'yarn:format:*'",
"lint:eslint": "eslint ./src",
"lint:prettier": "prettier ./src --check",
"format:eslint": "eslint ./src --fix",
"format:prettier": "prettier ./src --write",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "tera_ny",
"license": "UNLICENSED",
"dependencies": {
"@discordjs/rest": "^0.3.0",
"@types/node": "^17.0.18",
"axios": "^0.26.0",
"discord-api-types": "^0.27.1",
"discord.js": "^13.6.0",
"dotenv": "^16.0.0"
},
"devDependencies": {
"@swc/cli": "^0.1.55",
"@swc/core": "^1.2.140",
"@typescript-eslint/eslint-plugin": "^5.12.0",
"@typescript-eslint/parser": "^5.12.0",
"eslint": "^8.9.0",
"eslint-config-prettier": "^8.3.0",
"prettier": "^2.5.1",
"typescript": "^4.5.5"
}
}