-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.39 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
{
"name": "laifuwishlist",
"version": "1.0.0",
"main": "dist/index.js",
"scripts": {
"prettier": "prettier --write .",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"prebuild": "rimraf dist && npm run lint:fix",
"build": "tsc",
"start:dev": "node -r dotenv/config dist/index.js -- --dev",
"start:prod": "node -r dotenv/config dist/index.js -- --prod",
"commands:dev": "node -r dotenv/config dist/deploy-commands.js -- --dev",
"commands:prod": "node -r dotenv/config dist/deploy-commands.js -- --prod",
"clean:logs": "rimraf logs/*",
"info": "py scripts/info.py"
},
"author": "JB Ladera <minidomou@gmail.com>",
"license": "MIT",
"description": "",
"dependencies": {
"@discordjs/rest": "^1.0.0",
"dayjs": "^1.11.4",
"discord.js": "^14.0.3",
"dotenv": "^16.0.1",
"laifutil": "^3.0.1",
"mongoose": "^6.4.6",
"winston": "^3.8.1"
},
"devDependencies": {
"@types/node": "^18.0.6",
"@typescript-eslint/eslint-plugin": "^5.30.7",
"@typescript-eslint/parser": "^5.30.7",
"eslint": "^8.20.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"prettier": "2.7.1",
"rimraf": "^3.0.2",
"ts-node": "^10.9.1",
"typescript": "^4.7.4"
}
}