-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.24 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.24 KB
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": "speedruncommonitor",
"version": "1.0.0",
"description": "Discord bot for automatically posting new runs for a game in a channel",
"main": "index.js",
"scripts": {
"start": "tsx src/index.ts",
"lint:src": "eslint \"./{src,setup,migrations}/**/*.ts\"",
"lint:types": "tsc --noEmit",
"lint": "npm run lint:src && npm run lint:types",
"migrate": "tsx node_modules/node-pg-migrate/bin/node-pg-migrate.js -j ts --template-file-name setup/migration-template.ts",
"typeorm": "typeorm-ts-node-commonjs"
},
"type": "module",
"author": {
"name": "WentTheFox",
"url": "https://went.tf"
},
"license": "MIT",
"dependencies": {
"@formatjs/intl-durationformat": "^0.2.4",
"date-fns": "^3.6.0",
"discord.js": "^14.15.3",
"pg": "^8.4.0",
"pg-connection-string": "^2.6.4",
"reflect-metadata": "^0.1.13",
"typeorm": "0.3.20"
},
"devDependencies": {
"@eslint/js": "^9.4.0",
"@types/eslint__js": "^8.42.3",
"@types/node": "^16.11.10",
"dotenv": "^16.4.5",
"eslint": "^8.57.0",
"node-pg-migrate": "^7.4.0",
"node-postgres": "^0.6.2",
"pg": "^8.12.0",
"ts-node": "10.9.1",
"tsx": "^4.15.2",
"typescript": "^5.4.5",
"typescript-eslint": "^7.13.0"
}
}