-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1006 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
{
"name": "rekicholand-bot",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "npx tsc",
"start": "node dist/index.js",
"dev": "npx nodemon",
"lint": "eslint src --ext .js,.jsx,.ts,.tsx",
"lint-fix": "npm run lint -- --fix"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"date-fns": "^2.23.0",
"discord.js": "^14.3.0",
"dotenv": "^8.2.0",
"drizzle-orm": "^0.21.1",
"pg": "^8.10.0",
"string-argv": "^0.3.1"
},
"devDependencies": {
"@types/node": "^16.11.7",
"@types/pg": "^8.6.6",
"@typescript-eslint/eslint-plugin": "^4.11.0",
"@typescript-eslint/parser": "^4.11.0",
"drizzle-kit": "^0.17.0",
"eslint": "^7.16.0",
"eslint-config-prettier": "^7.1.0",
"eslint-plugin-import": "^2.22.1",
"nodemon": "^2.0.6",
"prettier": "^2.2.1",
"ts-node": "^10.9.1",
"typescript": "^4.9.5"
},
"engines": {
"node": ">=16.9",
"npm": "*"
}
}