-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.07 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": "parrot",
"version": "1.0.2",
"description": "",
"scripts": {
"parrot": "ts-node bin.ts",
"test": "echo \"Error: no test specified\" && exit 1",
"cron": "ts-node src/cron/index.ts"
},
"bin": {
"parrot": "bin.ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@octokit/rest": "^19.0.4",
"@slack/webhook": "^6.1.0",
"@swc/core": "^1.3.3",
"@swc/helpers": "^0.4.11",
"chalk": "4",
"discord.js": "^14.6.0",
"dotenv": "^16.0.3",
"tiny-invariant": "^1.3.1",
"ts-node": "^10.9.1",
"typescript": "^4.8.4",
"yargs": "^17.6.0"
},
"devDependencies": {
"@devacademy/eslint-config": "^1.4.0",
"@types/node": "^18.7.23",
"@types/yargs": "^17.0.13",
"@vercel/node": "^2.5.22",
"eslint": "^8.26.0",
"vercel": "^28.4.8"
},
"eslintConfig": {
"extends": "@devacademy/eslint-config/core"
},
"prettier": {
"singleQuote": true,
"semi": false
},
"overrides": {
"@vercel/node": {
"ts-node": "10.9.1",
"typescript": "4.8.4"
}
}
}