-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.17 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
{
"name": "topgg-vote-reminder",
"version": "0.1.0",
"description": "a webserver for melon's topgg vote reminder",
"main": "./prod/index.ts",
"scripts": {
"prebuild": "rm -rf ./prod",
"build": "tsc",
"lint": "eslint src --max-warnings=0",
"start": "node -r dotenv/config ./prod/index.js",
"test": "echo 'breh'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Melon-Development-ZUI/topgg-vote-reminder.git"
},
"author": "Lemon Rose",
"license": "MIT",
"devDependencies": {
"@types/express": "^4.17.13",
"@types/node": "^17.0.23",
"@types/node-fetch": "^2.6.1",
"@typescript-eslint/eslint-plugin": "^5.17.0",
"@typescript-eslint/parser": "^5.17.0",
"eslint": "^8.12.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jsdoc": "^38.1.4",
"eslint-plugin-prettier": "^4.0.0",
"prettier": "^2.6.1",
"typescript": "^4.6.3"
},
"dependencies": {
"@top-gg/sdk": "^3.1.3",
"express": "^4.17.3",
"node-fetch": "^3.2.3"
}
}