-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.15 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.15 KB
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
{
"name": "discord-project-manager",
"version": "1.0.0",
"description": "",
"engines": {
"node": ">= 17.4.0 "
},
"license": "MIT",
"devDependencies": {
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/jest": "~27.0.2",
"@types/node": "~16.11.6",
"@typescript-eslint/eslint-plugin": "~5.7.0",
"@typescript-eslint/parser": "~5.7.0",
"eslint": "~8.4.1",
"eslint-config-prettier": "~8.3.0",
"eslint-plugin-jest": "~25.3.0",
"prettier": "~2.5.1",
"ts-jest": "~27.1.1",
"tsutils": "~3.21.0",
"typescript": "~4.5.3"
},
"scripts": {
"start": "nodemon",
"build": "tsc --build",
"clean": "tsc --build --clean",
"prebuild": "yarn run lint",
"lint": "eslint . --ext .ts,.tsx"
},
"author": "Patryk Makowski",
"dependencies": {
"@discordjs/builders": "^0.12.0",
"@discordjs/rest": "^0.3.0",
"axios": "^0.26.0",
"cors": "^2.8.5",
"discord-api-types": "^0.26.1",
"discord.js": "^13.6.0",
"dotenv": "^16.0.0",
"express": "^4.17.2",
"heroku-keep-awake": "^1.1.2",
"nodemon": "^2.0.15",
"ts-node": "^10.4.0",
"tslib": "~2.3.1"
}
}