-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.64 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 1.64 KB
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
49
50
51
52
{
"name": "fly-dbh-studio",
"type": "module",
"version": "0.0.1",
"scripts": {
"dev": "node dev.mjs",
"dev:astro": "astro dev",
"dev:api": "nodemon ./server/main.mjs --watch",
"build": "astro build",
"preview": "astro preview",
"astro": "astro",
"astro:upgrade": "npx @astrojs/upgrade",
"start": "npm run build & npm run start:server",
"start:static": "http-server ./dist -p 4321",
"start:server": "node --experimental-strip-types ./server/main.mjs",
"up": "npm run astro:upgrade && npx --yes npm-check-updates -i"
},
"dependencies": {
"@astrojs/node": "^9.5.1",
"@astrojs/react": "^4.4.2",
"@nanostores/react": "^1.0.0",
"@tweenjs/tween.js": "^25.0.0",
"astro": "^5.16.0",
"axios": "^1.13.2",
"classnames": "^2.5.1",
"dayjs": "^1.11.19",
"debug": "^4.4.3",
"express": "^5.1.0",
"express-ws": "^5.0.2",
"less": "^4.4.2",
"md5": "^2.3.0",
"msfs-simconnect-api-wrapper": "^4.7.0",
"nanostores": "^1.1.0",
"normalize.css": "^8.0.1",
"numeral": "^2.0.6",
"obs-websocket-js": "^5.0.7",
"react": "^19.2.0",
"react-dom": "^19.2.0"
},
"devDependencies": {
"@types/express": "^5.0.5",
"@types/md5": "^2.3.6",
"@types/node": "^22.14.0",
"@types/numeral": "^2.0.5",
"@types/react": "^19.2.6",
"@types/react-dom": "^19.2.3",
"cross-env": "^10.1.0",
"file-url": "^4.0.0",
"node-windows": "^1.0.0-beta.8",
"nodemon": "^3.1.11"
}
}