-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
73 lines (73 loc) · 2.27 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
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "remix-electron-template",
"description": "",
"version": "0.0.0",
"private": true,
"main": "desktop/main.js",
"scripts": {
"clean": "del-cli dist desktop/build public/build",
"predev": "yarn proto:gen",
"dev": "yarn clean && cross-env NODE_ENV=development npm-run-all --parallel --print-label --race dev:*",
"dev:remix": "remix watch",
"dev:nodemon": "wait-on file:desktop/main.js && nodemon .",
"dev:grpc": "wait-on file:grpc/greeter-server.ts && yarn ts-node grpc/greeter-server.ts",
"build": "yarn clean && remix build && electron-builder",
"start": "cross-env NODE_ENV=production electron .",
"proto:gen": "protoc --proto_path=./grpc/proto --plugin=./node_modules/.bin/protoc-gen-ts_proto --ts_proto_opt=outputServices=nice-grpc,outputServices=generic-definitions,useExactTypes=false,esModuleInterop=true --ts_proto_out=./grpc/gen_proto ./grpc/proto/*.proto"
},
"build": {
"files": [
"desktop",
"public",
"remix.config.js"
]
},
"dependencies": {
"@chakra-ui/react": "^1.8.8",
"@emotion/cache": "^11.7.1",
"@emotion/react": "^11",
"@emotion/server": "^11",
"@emotion/styled": "^11",
"@grpc/grpc-js": "^1.6.7",
"@prisma/client": "^3.13.0",
"@remix-run/node": "^1.4.3",
"@remix-run/react": "^1.4.3",
"@remix-run/server-runtime": "^1.4.3",
"fast-glob": "^3.2.11",
"framer-motion": "^6",
"ix": "^4.5.2",
"long": "^5.2.0",
"nice-grpc": "^1.2.0",
"protobufjs": "^6.11.2",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"remix-electron": "^1.2.2",
"remix-utils": "^3.2.0",
"use-file-picker": "^1.4.2"
},
"devDependencies": {
"@remix-run/dev": "^1.4.3",
"@types/react": "^18.0.5",
"@types/react-dom": "^18.0.1",
"cross-env": "^7.0.3",
"del-cli": "^4.0.1",
"electron": "^18.2.3",
"electron-builder": "^23.0.3",
"electron-devtools-installer": "^3.2.0",
"esbuild-register": "^3.3.2",
"nodemon": "^2.0.15",
"npm-run-all": "^4.1.5",
"prisma": "^3.13.0",
"ts-node": "^10.7.0",
"ts-proto": "^1.112.1",
"typescript": "^4.6.3",
"wait-on": "^6.0.1"
},
"engines": {
"node": ">=14"
},
"sideEffects": false,
"prisma": {
"seed": "node --require esbuild-register prisma/seed.ts"
}
}