-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1005 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
37
38
39
40
41
42
43
{
"name": "reserve-alerts",
"version": "1.0.0",
"description": "",
"main": "index.ts",
"scripts": {
"start": "ts-node src/index.ts",
"preview": "NODE_ENV=staging ts-node src/index.ts",
"format": "prettier -w '**/*.{js,ts}'"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@devacademy/eslint-config": "^1.8.0",
"@types/node": "^18.11.18",
"@typescript-eslint/eslint-plugin": "^5.50.0",
"@typescript-eslint/parser": "^5.50.0",
"eslint": "^8.33.0",
"prettier": "^2.8.3",
"regenerator-runtime": "^0.13.11"
},
"dependencies": {
"@discordjs/rest": "^1.5.0",
"@swc/core": "^1.3.31",
"@swc/helpers": "^0.4.14",
"axios": "^0.27.2",
"discord.js": "^14.7.1",
"dotenv": "^16.0.3",
"tiny-invariant": "^1.3.1",
"ts-node": "^10.9.1",
"typescript": "^4.9.5"
},
"eslintConfig": {
"extends": [
"@devacademy"
]
},
"prettier": {
"singleQuote": true,
"semi": false
}
}