-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.12 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.12 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
{
"name": "concepts-file-viewer",
"version": "1.0.0",
"description": "Web-based viewer for iOS Concepts app files",
"main": "dist/main.js",
"scripts": {
"build": "node esbuild.config.js",
"watch": "node esbuild.config.js --watch",
"serve": "tsx server.ts",
"dev": "npm run build && concurrently \"npm run watch\" \"npm run serve\"",
"predeploy": "npm run build",
"deploy": "gh-pages -d dist"
},
"dependencies": {
"@msgpack/msgpack": "^3.1.3",
"bplist-parser": "^0.3.2",
"buffer": "^6.0.3",
"express": "^5.1.0",
"idb-keyval": "^6.2.2",
"jszip": "^3.10.1",
"pdfjs-dist": "^5.4.296",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"react-router-dom": "^7.9.3"
},
"devDependencies": {
"@types/express": "^5.0.3",
"@types/node": "^20.10.0",
"@types/pdfjs-dist": "^2.10.377",
"@types/react": "^19.2.2",
"@types/react-dom": "^19.2.1",
"@types/wicg-file-system-access": "^2023.10.7",
"concurrently": "^9.2.1",
"esbuild": "^0.19.11",
"gh-pages": "^6.3.0",
"ts-node": "^10.9.2",
"tsx": "^4.20.6",
"typescript": "^5.3.3"
}
}