forked from titaniumnetwork-dev/Alu
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
47 lines (47 loc) · 1.37 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
{
"name": "alus-unblocker",
"type": "module",
"version": "0.0.1",
"scripts": {
"build:all": "npm run format && npm run lint && npm run build",
"start": "node .",
"build": "astro build",
"dev": "npm run build && npm run start",
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint": "eslint .",
"lint:fix": "eslint --fix ."
},
"dependencies": {
"@astrojs/node": "^8.3.4",
"@inox-tools/sitemap-ext": "^0.3.5",
"@mercuryworkshop/bare-as-module3": "^2.2.2",
"@mercuryworkshop/bare-mux": "^2.1.2",
"@mercuryworkshop/epoxy-transport": "^2.1.16",
"@mercuryworkshop/libcurl-transport": "^1.3.10",
"@rubynetwork/rammerhead": "^1.3.5",
"@titaniumnetwork-dev/ultraviolet": "^3.2.7",
"@tomphttp/bare-server-node": "^2.0.4",
"@types/node": "^20.16.11",
"astro": "^4.16.2",
"chalk": "^5.3.0",
"cookie-parser": "^1.4.7",
"dotenv-flow": "^4.1.0",
"express": "^4.21.1",
"notyf": "^3.10.0",
"sequelize": "^6.37.4",
"sqlite3": "^5.1.7",
"wisp-server-node": "^1.1.7"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"eslint": "^8.57.1",
"eslint-plugin-astro": "^0.31.4",
"prettier": "3.2.5",
"prettier-plugin-astro": "^0.13.0"
},
"optionalDependencies": {
"bufferutil": "^4.0.8"
}
}