-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
61 lines (61 loc) · 1.81 KB
/
package.json
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
53
54
55
56
57
58
59
60
61
{
"name": "firecell",
"version": "3.0.0",
"description": "A local file server.",
"type": "module",
"bin": {
"firecell": "scripts/launch.js"
},
"scripts": {
"relay": "tsc --project src/config/tsconfig.json && node scripts/runner.js",
"start-server": "tsc --project src/server/tsconfig.json && npm run relay start-server",
"build-server": "tsc --project src/server/tsconfig.json",
"start-client": "npm run relay start-client",
"build-client": "tsc --project src/client/tsconfig.json && npm run relay build-client",
"clean": "rm -rf build",
"start": "npm run clean && epiijs_env=dev npm run start-server & npm run start-client & wait",
"build": "npm run clean && npm run build-server & npm run build-client & wait"
},
"keywords": [
"local",
"mirror",
"server",
"static",
"anywhere",
"everywhere",
"fetch"
],
"author": "Sartrey Lee <[email protected]> (https://sartrey.cn)",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/sartrey/firecell.git"
},
"bugs": {
"url": "https://github.com/sartrey/firecell/issues"
},
"homepage": "https://github.com/sartrey/firecell#readme",
"devDependencies": {
"@epiijs/client": "^1.1.0",
"@epiijs/eslint-config": "^0.1.3",
"@material-design-icons/font": "^0.14.13",
"@types/mime-types": "^2.1.4",
"@types/node": "^20.2.1",
"@types/qrcode": "^1.5.5",
"@types/react": "^18.2.41",
"@types/react-dom": "^18.2.17",
"@types/uuid": "^9.0.8",
"eslint": "^8.41.0",
"qr-scanner": "^1.4.2",
"qrcode": "^1.5.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.21.1"
},
"dependencies": {
"@epiijs/config": "^0.5.0",
"@epiijs/server": "^3.3.2",
"mime-types": "^2.1.35",
"uuid": "^9.0.1"
}
}