-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
24 lines (24 loc) · 731 Bytes
/
Copy pathpackage.json
File metadata and controls
24 lines (24 loc) · 731 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
{
"name": "tms",
"version": "beta1.3",
"private": true,
"description": "TMS cinema management system with GDC projector/server integration",
"scripts": {
"clean": "node -e \"require('node:fs').rmSync('dist',{ recursive: true, force: true })\"",
"build": "npm run clean && tsc -p tsconfig.json",
"start:web": "node dist/server/web-server.js",
"start:gdc-smoke": "node dist/examples/gdc-smoke.js",
"start:finixx-smoke": "node dist/examples/finixx-smoke.js"
},
"devDependencies": {
"@types/node": "^22.15.30",
"typescript": "^5.8.3"
},
"dependencies": {
"basic-ftp": "^6.0.1",
"ftp-srv": "^4.6.3",
"iconv-lite": "^0.7.2",
"jszip": "^3.10.1",
"mysql2": "^3.22.2"
}
}