-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
48 lines (48 loc) · 1.53 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
{
"name": "discord-karma-bot-by-dmf",
"version": "1.3.11",
"description": "See README.md for more information",
"main": "src/entry.ts",
"scripts": {
"lint": "eslint --ext .js --ext .ts",
"release:patch": "npm version patch && git push --tags && git push",
"release:minor": "npm version minor && git push --tags && git push",
"release:major": "npm version major && git push --tags && git push",
"refreshdb": "npx prisma migrate dev --name init",
"start": "tsc && cross-env NODE_ENV=production && node build/entry.js",
"start:dev": "nodemon --exec ./node_modules/.bin/babel-node src/entry.ts --extensions \".ts\"",
"startdocker": "npm install && tsc && cross-env NODE_ENV=production node build/entry.js",
"test": "echo \"Error: no test specified\" && exit 1",
"updatecommands": "ts-node src/scripts/register-commands.ts"
},
"keywords": [],
"author": "rc4l",
"license": "ISC",
"dependencies": {
"@prisma/client": "^5.2.0",
"axios": "^1.5.0",
"cross-env": "^7.0.3",
"discord.js": "^14.13.0",
"dotenv": "^16.3.1",
"prisma": "^5.2.0",
"prisma-redis-middleware": "4.8.0"
},
"engines": {
"npm": "9.8.1",
"node": "18.17.1"
},
"devDependencies": {
"@babel/cli": "^7.22.10",
"@babel/core": "^7.22.10",
"@babel/node": "^7.22.10",
"@babel/preset-env": "^7.22.10",
"@babel/preset-typescript": "^7.22.5",
"@types/node": "^20.5.1",
"@typescript-eslint/eslint-plugin": "^6.4.1",
"@typescript-eslint/parser": "^6.4.1",
"eslint": "^8.47.0",
"nodemon": "^3.0.1",
"ts-node": "^10.9.1",
"typescript": "^5.1.6"
}
}