forked from EvoEsports/minicontrol
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.45 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
{
"scripts": {
"dev": "tsx --tsconfig ./tsconfig.json --env-file=.env --watch ./core/minicontrol.ts",
"dev2": "tsx --env-file=.env2 --watch run core/minicontrol.ts",
"start": "tsx --env-file=.env core/minicontrol.ts",
"start2": "tsx --env-file=.env2 core/minicontrol.ts",
"migrate": "tsx --env-file=.env migrate.ts",
"migrate:docker": "tsx migrate.ts",
"docker": "tsx core/minicontrol.ts"
},
"type": "module",
"dependencies": {
"dependency-graph": "1.0.0",
"gbx": "1.0.0-rc8",
"iomem": "1.5.10",
"lzo-ts": "0.2.3",
"mysql2": "3.10.2",
"pg": "8.12.0",
"pg-hstore": "2.3.4",
"reflect-metadata": "0.2.2",
"sequelize": "6.37.3",
"sequelize-typescript": "2.1.6",
"sqlite3": "5.1.7",
"tm-essentials": "1.0.5",
"tsx": "4.16.2",
"twig": "1.17.1",
"umzug": "3.8.1",
"xmlrpc": "1.3.2"
},
"devDependencies": {
"@types/better-sqlite3": "7.6.10",
"@types/node": "^20.14.9",
"@types/twig": "1.12.16",
"@types/xmlrpc": "1.3.10",
"@typescript-eslint/eslint-plugin": "6.21.0",
"@typescript-eslint/parser": "6.21.0",
"eslint": "8.57.0",
"eslint-plugin-drizzle": "0.2.3"
},
"peerDependencies": {
"typescript": "5.5.3"
},
"imports": {
"core": "./core/",
"schemas": "./core/schemas/"
}
}