-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 923 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
{
"name": "@uah/server",
"private": true,
"author": "UAH",
"description": "description",
"version": "1.0.0",
"license": "ISC",
"type": "module",
"typings": "index.d.ts",
"engines": {
"node": ">=20.1.0"
},
"bin": {
"UAH.server": "./bin/dev.mjs",
"UAH.migrate": "./bin/migrate.mjs"
},
"imports": {
"#config": "./src/config.js",
"#utils/*": "./src/runtime/utils/*",
"#runtime/*": "./src/runtime/*",
"#compiler/*": "./src/compiler/*"
},
"dependencies": {
"typescript": "next",
"@types/node": "latest",
"uWebSockets.js": "uNetworking/uWebSockets.js#v20.44.0",
"@uah/postgres": "file:../../Postgres"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "latest",
"@typescript-eslint/parser": "latest",
"eslint": "latest",
"eslint-config-prettier": "latest",
"eslint-plugin-prettier": "latest",
"prettier": "latest"
}
}