-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.02 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
{
"name": "dead-rabbit-discord-bot",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"dev:build": "tsc -w",
"dev:run": "nodemon out/index.js",
"dev": "concurrently npm:dev:*",
"build": "rimraf ./out && tsc",
"start": "node out/index.js",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx"
},
"license": "MIT",
"devDependencies": {
"@types/express": "^4.17.11",
"@types/node": "^14.14.20",
"@types/pouchdb": "^6.4.0",
"@types/ws": "^7.4.0",
"@typescript-eslint/eslint-plugin": "^4.4.1",
"concurrently": "^5.3.0",
"eslint": "^7.17.0",
"eslint-config-airbnb-typescript": "^12.0.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-react": "^7.20.3",
"eslint-plugin-react-hooks": "^4.0.8",
"nodemon": "^2.0.7",
"rimraf": "^3.0.2",
"typescript": "^4.1.3"
},
"dependencies": {
"canvas": "^2.6.1",
"discord.js": "^12.5.1",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"pouchdb": "^7.2.2"
}
}