-
Notifications
You must be signed in to change notification settings - Fork 315
/
Copy pathpackage.json
48 lines (48 loc) · 1.39 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
{
"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.2",
"@astrojs/sitemap": "^3.1.6",
"@mercuryworkshop/bare-as-module3": "^2.2.2",
"@mercuryworkshop/bare-mux": "^2.0.9",
"@mercuryworkshop/epoxy-transport": "^2.1.11",
"@mercuryworkshop/libcurl-transport": "^1.3.10",
"@rubynetwork/rammerhead": "^1.3.2",
"@titaniumnetwork-dev/ultraviolet": "^3.2.6",
"@tomphttp/bare-server-node": "^2.0.4",
"@types/node": "^20.14.12",
"astro": "^4.12.2",
"chalk": "^5.3.0",
"cookie-parser": "^1.4.6",
"dotenv-flow": "^4.1.0",
"express": "^4.19.2",
"notyf": "^3.10.0",
"sequelize": "^6.37.3",
"sqlite3": "^5.1.7",
"wisp-server-node": "^1.1.4"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^7.17.0",
"@typescript-eslint/parser": "^7.17.0",
"eslint": "^8.57.0",
"eslint-plugin-astro": "^0.31.4",
"prettier": "3.2.5",
"prettier-plugin-astro": "^0.13.0",
"sass": "^1.78.0"
},
"optionalDependencies": {
"bufferutil": "^4.0.8"
}
}