-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
50 lines (50 loc) · 1.69 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
{
"name": "discord-bot-template",
"version": "1.0.0",
"license": "ISC",
"scripts": {
"start": "node dist/index.js",
"dev:bot": "ts-node-dev -r tsconfig-paths/register --transpile-only --ignore-watch node_modules src/index.ts",
"build": "tsc --skipLibCheck && npx tscpaths -p tsconfig.json -s ./src -o ./dist",
"typeorm": "ts-node-dev ./node_modules/typeorm/cli.js",
"migration:create": "ts-node-dev -r tsconfig-paths/register ./node_modules/typeorm/cli.js migration:create -n",
"migration:run": "ts-node-dev -r tsconfig-paths/register ./node_modules/typeorm/cli.js migration:run"
},
"dependencies": {
"axios": "^0.21.1",
"celebrate": "^13.0.4",
"cors": "^2.8.5",
"cron": "^1.8.2",
"discord.js": "^12.5.1",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"pg": "^8.5.1",
"reflect-metadata": "^0.1.13",
"typeorm": "^0.2.32",
"uuid": "^8.3.2"
},
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@types/cors": "^2.8.9",
"@types/cron": "^1.7.2",
"@types/express": "^4.17.11",
"@types/node": "^14.14.14",
"@types/uuid": "^8.3.0",
"@typescript-eslint/eslint-plugin": "^4.10.0",
"@typescript-eslint/parser": "^4.10.0",
"commitlint-config-rocketseat": "^0.0.1",
"eslint": "^7.15.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^7.0.0",
"eslint-import-resolver-typescript": "^2.3.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.3.0",
"husky": "^4.3.8",
"lint-staged": "^10.5.4",
"prettier": "^2.2.1",
"ts-node-dev": "^1.1.1",
"tsconfig-paths": "^3.9.0",
"typescript": "^4.1.3"
}
}