-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.01 KB
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 1.01 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
{
"name": "userpfp-bot",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint --ext .ts src",
"build": "rm -rf dist && tsc",
"dev": "nodemon --exec node -r dotenv/config --loader ts-node/esm src/index.ts",
"start": "node dist/index.js"
},
"keywords": [],
"author": "",
"license": "MIT",
"devDependencies": {
"@tsconfig/node20": "^20.1.2",
"@types/node": "^20.8.7",
"@typescript-eslint/eslint-plugin": "^6.8.0",
"@typescript-eslint/parser": "^6.8.0",
"dotenv": "^16.3.1",
"eslint": "^8.52.0",
"eslint-plugin-simple-import-sort": "^10.0.0",
"eslint-plugin-unused-imports": "^3.0.0",
"nodemon": "^3.0.1",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
},
"dependencies": {
"@octokit/rest": "^20.0.2",
"@uwu-codes/status-server": "^1.0.1",
"env-verifier": "^1.5.0",
"oceanic.js": "^1.8.1",
"slash-create": "^5.14.0"
},
"type": "module"
}