-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
82 lines (82 loc) · 2.8 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "liminal-umbrella",
"version": "1.0.0",
"main": "dist/index.js",
"author": "@sapphire",
"license": "UNLICENSE",
"type": "module",
"dependencies": {
"@sapphire/decorators": "^6.0.4",
"@sapphire/discord.js-utilities": "7.1.6",
"@sapphire/fetch": "^3.0.2",
"@sapphire/framework": "^5.0.7",
"@sapphire/plugin-api": "patch:@sapphire/plugin-api@npm%3A6.1.1#~/.yarn/patches/@sapphire-plugin-api-npm-6.1.1-4c6149ab8f.patch",
"@sapphire/plugin-logger": "^4.0.2",
"@sapphire/utilities": "^3.15.3",
"@sequelize/core": "^7.0.0-alpha.37",
"@skyra/env-utilities": "^1.3.0",
"bufferutil": "^4.0.8",
"colorette": "^2.0.20",
"common": "1.0.0",
"dayjs": "1.11.13",
"discord.js": "^14.14.1",
"limit-concurrency-decorator": "^0.6.0",
"prom-client": "^15.1.0",
"sequelize": "^7.0.0-alpha.9",
"sqlite3": "^5.1.7",
"ts-node": "^10.9.2",
"umzug": "^3.7.0",
"zlib-sync": "^0.1.9",
"zod": "^3.23.8"
},
"resolutions": {
"dayjs": "1.11.13",
"antd": "^5.19.3",
"typescript": "5.6.3"
},
"devDependencies": {
"@babel/core": "^7.24.0",
"@babel/plugin-proposal-decorators": "^7.24.0",
"@babel/preset-env": "^7.24.0",
"@babel/preset-typescript": "^7.23.3",
"@eslint-react/eslint-plugin": "^1.15.0",
"@eslint/js": "^9.12.0",
"@flydotio/dockerfile": "^0.5.2",
"@sapphire/cli": "^1.9.3",
"@sapphire/ts-config": "^5.0.0",
"@types/babel__core": "^7",
"@types/babel__preset-env": "^7",
"@types/bluebird": "^3.5.42",
"@types/eslint__js": "^8.42.3",
"@types/jest": "^29.5.12",
"@types/node": "^20.11.5",
"@types/ws": "^8.5.10",
"babel-jest": "^29.7.0",
"eslint": "^9.13.0",
"eslint-plugin-prettier": "^5.2.1",
"jest": "^29.7.0",
"prettier": "^3.3.3",
"ts-jest": "^29.1.2",
"ts-jest-resolver": "^2.0.1",
"tsc-watch": "^6.0.4",
"typescript": "^5.6.3",
"typescript-eslint": "^8.8.1"
},
"scripts": {
"sapphire": "sapphire",
"generate": "sapphire generate",
"build": "tsc",
"watch": "tsc -w",
"start": "node --use-strict dist/index.js --experimental-specifier-resolution=node",
"dev": "yarn workspace common run build && yarn run build && yarn run start",
"watch:start": "tsc-watch --onSuccess \"npm run start\"",
"format": "npx eslint --fix",
"deploy": "rm -rf dist; tsc && fly deploy",
"deploy-prod": "rm -rf dist; tsc && fly deploy -c fly-production.toml"
},
"packageManager": "[email protected]",
"workspaces": [
"common/",
"frontend/"
]
}