-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
51 lines (51 loc) · 1.43 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
51
{
"name": "atlas-points",
"version": "0.0.1",
"description": "Atlas Fellowship Discord bot to track points",
"main": "index.js",
"repository": "https://github.com/eauwmadison/atlas-points.git",
"author": "eeshaan <[email protected]>",
"license": "Unlicense",
"scripts": {
"start": "node dist/index.js",
"build": "swc src -d dist",
"check": "tsc",
"dev": "nodemon",
"format": "prettier --write .",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test": "jest"
},
"dependencies": {
"@discordjs/builders": "^0.15.0",
"@discordjs/rest": "^0.5.0",
"discord-api-types": "^0.35.0",
"discord.js": "^13.8.1",
"dotenv": "^16.0.1",
"firebase-admin": "^11.0.0"
},
"devDependencies": {
"@swc-node/register": "^1.5.1",
"@swc/cli": "^0.1.57",
"@swc/core": "^1.2.205",
"@swc/jest": "^0.2.21",
"@types/jest": "^28.1.3",
"@types/node": "^18.0.0",
"@typescript-eslint/eslint-plugin": "^5.29.0",
"@typescript-eslint/parser": "^5.29.0",
"eslint": "^8.18.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.0.0",
"jest": "^28.1.1",
"nodemon": "^2.0.18",
"prettier": "^2.7.1",
"regenerator-runtime": "^0.13.9",
"typescript": "^4.7.4"
},
"peerDependencies": {
"@firebase/app-types": "^0.7.0"
}
}