-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.01 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.01 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
{
"name": "bespoke-geometry-plane",
"version": "0.0.3",
"description": "Geometry Plane – Bespoke Simulation application with WebSocket and operation logging",
"main": "server.js",
"scripts": {
"start": "npm run start:prod",
"start:prod": "IS_PRODUCTION=true node server.js",
"start:dev": "concurrently \"npm run dev:vite\" \"npm run dev:api\"",
"dev": "npm run build && node server.js",
"dev:server": "node server.js",
"dev:vite": "vite",
"dev:api": "PORT=3001 node server.js",
"build": "tsc && tsc -p tsconfig.validate.json",
"build:watch": "tsc --watch",
"build:vite": "vite build",
"typecheck": "tsc --noEmit",
"validate": "node run-validate.mjs"
},
"keywords": [
"bespoke",
"geometry",
"development",
"server",
"websocket"
],
"author": "",
"license": "MIT",
"dependencies": {
"ws": "^8.14.2"
},
"devDependencies": {
"@types/node": "^22.0.0",
"concurrently": "^8.2.2",
"typescript": "^5.9.3",
"vite": "^5.4.11"
}
}