-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.05 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
{
"name": "sdbridge",
"packageManager": "[email protected]",
"type": "module",
"scripts": {
"start": "node dist",
"build": "tsc",
"typeorm": "typeorm -d ./dist/db/data-source.js",
"migrate": "typeorm -d ./dist/db/data-source.js migration:run"
},
"devDependencies": {
"@rinsuki/eslint-config": "^2.0.0",
"@rinsuki/prettier-config": "^1.5.0",
"@types/better-sqlite3": "^7.5.0",
"@types/node": "^18.0.6",
"eslint": "^8.20.0",
"nodemon": "^2.0.19",
"prettier": "^2.7.1",
"typescript": "^4.7.4"
},
"dependencies": {
"@slack/rtm-api": "^6.0.0",
"@slack/web-api": "^6.7.2",
"better-sqlite3": "^7.6.2",
"discord.js": "^14.0.2",
"typeorm": "^0.3.7",
"zod": "^3.17.9"
},
"eslintConfig": {
"extends": [
"@rinsuki"
],
"parserOptions": {
"project": [
"./tsconfig.json"
]
}
},
"prettier": "@rinsuki/prettier-config"
}