-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
84 lines (84 loc) · 2.45 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"main": "app.ts",
"name": "best-discord-bot-template-ever",
"author": "Nguyen Gia Tuan <GarfDev>",
"email": "nguyengiatuan3110@gmail.com",
"private": true,
"version": "0.0.3",
"description": "A high quality discord bot template",
"license": "MIT",
"scripts": {
"dev": "nodemon",
"start": "yarn build && node ./dist/index.js",
"test": "jest --setupFiles dotenv/config --detectOpenHandles --forceExit",
"test:coverage": "jest --setupFiles dotenv/config --detectOpenHandles --coverage",
"clean": "prettier --config .prettierrc.js '**/*.ts' --write",
"lint": "eslint . --fix --ignore-path .gitignore",
"lint:fix": "npm run lint -- --fix",
"build": "ttsc -b -v",
"doctor": "yarn build && clinic doctor -- node ./dist/index.js",
"flame": "yarn build && clinic flame -- node ./dist/index.js",
"bubbleprof": "yarn build && clinic bubbleprof -- node ./dist/index.js",
"tsc": "ttsc"
},
"lint-staged": {
"**/*.ts": [
"yarn lint"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "yarn build"
}
},
"devDependencies": {
"@reduxjs/toolkit": "^1.5.0",
"@types/app-root-path": "^1.2.4",
"@types/axios": "^0.14.0",
"@types/bcrypt": "^3.0.1",
"@types/glob": "^7.1.3",
"@types/jest": "^26.0.20",
"@types/mongoose": "^5.10.5",
"@types/node": "^14.14.21",
"@types/npmlog": "^4.1.2",
"@typescript-eslint/eslint-plugin": "^4.14.0",
"@typescript-eslint/parser": "^4.14.0",
"clinic": "^8.0.1",
"corde": "^3.1.2",
"eslint": "^7.18.0",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.3.1",
"husky": "^4.3.8",
"jest": "^26.6.3",
"lint-staged": "^10.5.3",
"module-alias": "^2.2.2",
"nodemon": "^2.0.7",
"prettier": "^2.2.1",
"ts-jest": "^26.4.4",
"ts-node": "^9.1.1",
"tsconfig-paths": "^3.9.0",
"ttypescript": "^1.5.12",
"typesafe-actions": "^5.1.0",
"typescript": "^4.1.3",
"typescript-transform-paths": "^2.2.2"
},
"dependencies": {
"app-root-path": "^3.0.0",
"axios": "^0.21.1",
"caller-path": "^3.0.0",
"discord.js": "^12.5.3",
"discordjs-prompter": "^2.0.4",
"dotenv": "^8.2.0",
"glob": "^7.1.6",
"immer": "^9.0.1",
"moment": "^2.29.1",
"mongoose": "^5.12.5",
"npmlog": "^4.1.2",
"redux": "^4.0.5",
"redux-saga": "^1.1.3",
"reselect": "^4.0.0",
"yup": "^0.32.8"
}
}