-
Notifications
You must be signed in to change notification settings - Fork 228
/
package.json
89 lines (89 loc) · 2.88 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
85
86
87
88
89
{
"name": "calypso-bot",
"version": "0.0.1",
"description": "A fully customizable bot built with discord.js",
"main": "app.ts",
"engines": {
"node": ">=18.12.0"
},
"dependencies": {
"@discordjs/rest": "^1.3.0",
"@prisma/client": "^4.6.0",
"chalk": "^4.1.2",
"cli-table3": "^0.6.3",
"common-tags": "^1.8.2",
"dayjs": "^1.11.6",
"discord.js": "^14.6.0",
"dotenv": "^16.0.1",
"glob": "^8.0.3",
"lodash": "^4.17.21",
"node-fetch": "^2.6.7",
"winston": "^3.8.2",
"yargs": "^17.6.2"
},
"devDependencies": {
"@commitlint/cli": "^17.0.3",
"@commitlint/config-conventional": "^17.0.3",
"@types/common-tags": "^1.8.1",
"@types/glob": "^8.0.0",
"@types/lodash": "^4.14.187",
"@types/node": "^18.0.4",
"@types/node-fetch": "^2.6.2",
"@types/yargs": "^17.0.13",
"@typescript-eslint/eslint-plugin": "^5.30.7",
"@typescript-eslint/parser": "^5.30.7",
"commitizen": "^4.2.5",
"cross-env": "^7.0.3",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.20.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^3.5.2",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-tsdoc": "^0.2.17",
"husky": "8.0.1",
"lint-staged": "13.0.3",
"prettier": "2.7.1",
"prisma": "^4.6.0",
"ts-node": "^10.9.1",
"ts-node-dev": "^2.0.0",
"tsconfig-paths": "^4.1.0",
"tslib": "^2.4.0",
"typescript": "^4.7.4"
},
"scripts": {
"start": "cross-env NODE_ENV=development ts-node src/app.ts",
"start:dev": "cross-env NODE_ENV=development ts-node-dev --exit-child -r tsconfig-paths/register src/app.ts",
"start:debug": "cross-env NODE_ENV=development ts-node-dev -r tsconfig-paths/register src/app.ts --debug",
"start:prod": "cross-env NODE_ENV=production TS_NODE_BASEURL=dist/src node -r tsconfig-paths/register dist/src/app.js",
"deploy": "cross-env NODE_ENV=development ts-node deploy.ts",
"deploy:dev": "npm run deploy",
"deploy:prod": "cross-env NODE_ENV=production ts-node deploy.ts",
"build": "tsc",
"watch": "tsc -w",
"lint": "eslint --ext .js,.ts src",
"lint:fix": "eslint --ext .js,.ts --fix src",
"check": "prettier --ignore-path .gitignore --check .",
"format": "prettier --ignore-path .gitignore --write .",
"precommit": "npx lint-staged",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sabattle/CalypsoBot.git"
},
"author": "Sebastian Battle",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/sabattle/CalypsoBot/issues"
},
"homepage": "https://github.com/sabattle/CalypsoBot#readme",
"lint-staged": {
"**/*.{js,ts}": "eslint --ext .js,.ts",
"**/*.{js,ts,json,md}": "prettier --ignore-path .gitignore --write"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}