-
Notifications
You must be signed in to change notification settings - Fork 305
/
Copy pathpackage.json
47 lines (47 loc) · 1.36 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": "alu",
"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": "^9.0.0",
"@astrojs/sitemap": "^3.2.1",
"@mercuryworkshop/bare-as-module3": "^2.2.5",
"@mercuryworkshop/bare-mux": "^2.1.5",
"@mercuryworkshop/epoxy-transport": "^2.1.26",
"@mercuryworkshop/libcurl-transport": "^1.3.14",
"@mercuryworkshop/wisp-js": "^0.3.3",
"@rubynetwork/rammerhead": "^1.3.5",
"@titaniumnetwork-dev/ultraviolet": "^3.2.10",
"@tomphttp/bare-server-node": "^2.0.5",
"@types/node": "^22.10.1",
"astro": "^5.0.1",
"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.5",
"sqlite3": "^5.1.7"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^8.17.0",
"@typescript-eslint/parser": "^8.17.0",
"eslint": "^9.16.0",
"eslint-plugin-astro": "^1.3.1",
"prettier": "3.4.1",
"prettier-plugin-astro": "^0.14.1"
},
"optionalDependencies": {
"bufferutil": "^4.0.8"
}
}