-
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) · 754 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 754 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": "Structural-Analysis-Tool",
"version": "1.0.0",
"description": "",
"main": "dist/main.js",
"scripts": {
"build": "tsc -p tsconfig.server.json && tsc -p tsconfig.client.json && node scripts/copy-static.cjs",
"dev": "node dist/server.js",
"electron": "electron .",
"start": "npm run build && concurrently \"npm run dev\" \"npm run electron\""
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "commonjs",
"dependencies": {
"cors": "^2.8.6",
"express": "^5.2.1",
"nodemon": "^3.1.14"
},
"devDependencies": {
"@types/cors": "^2.8.19",
"@types/express": "^5.0.3",
"@types/node": "^22.15.30",
"concurrently": "^9.2.1",
"electron": "^40.6.1",
"typescript": "^5.8.3"
}
}