-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.4 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": "backend",
"version": "1.0.0",
"type": "commonjs",
"scripts": {
"dev": "tsc && node dist/index.js",
"lint": "eslint src --max-warnings 0",
"lint:fix": "eslint --fix src --max-warnings 0",
"prettier": "prettier src",
"prettier:fix": "prettier --write src",
"prisma:dev": "prisma migrate dev && prisma generate"
},
"dependencies": {
"@prisma/client": "^5.0.0",
"axios": "^1.4.0",
"cors": "^2.8.5",
"cron": "^2.4.3",
"discord.js": "^14.13.0",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"express-rate-limit": "^7.0.1",
"moment": "^2.29.4",
"redis": "^4.6.8",
"reflect-metadata": "^0.1.13",
"stripe": "^13.4.0",
"tsyringe": "^4.8.0"
},
"devDependencies": {
"@commitlint/cli": "^17.6.7",
"@commitlint/config-conventional": "^17.6.7",
"@types/axios": "^0.14.0",
"@types/cors": "^2.8.13",
"@types/cron": "^2.4.0",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.17",
"@types/moment": "^2.13.0",
"@types/redis": "^4.0.11",
"@typescript-eslint/eslint-plugin": "^6.1.0",
"@typescript-eslint/parser": "^6.1.0",
"discord-api-types": "^0.37.49",
"eslint": "^8.45.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-unicorn": "^48.0.0",
"husky": "^8.0.3",
"prettier": "^3.0.0",
"prisma": "^5.0.0",
"typescript": ">=4.7"
}
}