-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
36 lines (36 loc) · 995 Bytes
/
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
{
"name": "my-bot",
"version": "1.0.0",
"description": "",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint --fix --cache packages --ext .ts,.js,.tsx ",
"format": "prettier --write **.tsx"
},
"keywords": [],
"author": "gzpoffline@gmail.com",
"license": "MIT",
"devDependencies": {
"@types/node": "^18.15.3",
"@typescript-eslint/eslint-plugin": "^5.55.0",
"@typescript-eslint/parser": "^5.55.0",
"dotenv": "^16.0.3",
"eslint": "^8.36.0",
"eslint-config-prettier": "^8.7.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-prettier": "^4.2.1",
"prettier": "^2.8.4",
"prettier-plugin-tailwindcss": "^0.2.7",
"tsc-watch": "^6.0.0",
"typescript": "^4.9.5"
},
"engines": {
"node": ">=18",
"pnpm": ">=7"
},
"dependencies": {
"eslint-import-resolver-typescript": "^3.5.3",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-react-hooks": "^4.6.0"
}
}