forked from Night-N3twork/website
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 723 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 723 Bytes
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
{
"name": "@nightnetwork/website",
"private": "true",
"type": "module",
"version": "0.0.1",
"scripts": {
"dev": "astro dev --host & npm run server",
"build": "astro build",
"preview": "astro preview",
"astro": "astro",
"server": "node --env-file=.env --import=tsx server/index.ts",
"server:watch": "node --env-file=.env --import=tsx --watch server/index.ts",
"format": "prettier --write ."
},
"dependencies": {
"@astrojs/tailwind": "^6.0.2",
"@fastify/static": "^9.0.0",
"astro": "^5.7.12",
"fastify": "^5.7.4",
"lucide": "^0.509.0",
"prettier": "^3.8.1",
"seyfert": "^4.2.2",
"tailwind-scrollbar": "^3.1.0",
"tsparticles": "^1.37.4"
},
"devDependencies": {
"tsx": "^4.21.0"
}
}