-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
34 lines (34 loc) · 1.05 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
{
"name": "namik-ddns",
"type": "module",
"version": "0.1.3",
"scripts": {
"dev": "cross-env NODE_ENV=development astro dev",
"start": "cross-env NODE_ENV=development bun ./dist/server/entry.mjs",
"build": "rimraf dist && astro build",
"build:bun": "rimraf dist && astro build --outdir dist",
"build:check": "rimraf dist && astro check && astro build --outdir dist",
"preview": "astro preview",
"astro": "astro",
"clean": "rimraf dist",
"start:prod": "cross-env NODE_ENV=production bun ./dist/server/entry.mjs",
"start:bun": "cross-env NODE_ENV=production bun ./dist/server/entry.mjs"
},
"dependencies": {
"@astrojs/tailwind": "^5.1.0",
"@fontsource/poppins": "^5.1.0",
"astro": "^4.15.6",
"cross-env": "^7.0.3",
"@nurodev/astro-bun": "^1.1.5",
"ipaddr.js": "^2.2.0",
"node-cache": "^5.1.2",
"rimraf": "^6.0.1",
"tailwindcss": "^3.4.11",
"timeago.js": "^4.0.2",
"typescript": "^5.6.2"
},
"devDependencies": {
"@astrojs/check": "^0.9.3",
"@types/bun": "^1.1.10"
}
}