-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
36 lines (36 loc) · 1.17 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
{
"private": true,
"engines": {
"node": "^16"
},
"scripts": {
"info": "echo \"Env:\n KEYGEN_VERIFY_KEY=${KEYGEN_VERIFY_KEY:-<not set>}\n KEYGEN_ACCOUNT_ID=${KEYGEN_ACCOUNT_ID:-<not set>}\"",
"start-client": "parcel serve client/index.html --port 1234 --hmr-port 1234 --dist-dir dist/client",
"start-server": "parcel serve server/index.html --port 5678 --hmr-port 5678 --dist-dir dist/server",
"start": "yarn run info && concurrently 'yarn run start-client' 'yarn run start-server'"
},
"devDependencies": {
"@parcel/transformer-sass": "2.4.0",
"@types/prop-types": "^15.7.4",
"@types/react": "^17.0.42",
"@types/react-dom": "^17.0.14",
"buffer": "^6.0.3",
"concurrently": "^7.0.0",
"events": "^3.3.0",
"parcel": "^2.4.0",
"process": "^0.11.10",
"stream-browserify": "^3.0.0"
},
"dependencies": {
"crypto-browserify": "^3.12.0",
"elliptic": "^6.5.4",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-file-drop": "^3.1.3",
"react-loader-spinner": "^6.0.0-0",
"react-qr-code": "^2.0.3",
"react-webcam-qr-scanner.ts": "^1.0.4",
"uuid": "^8.3.2",
"webrtc-adapter": "^8.1.1"
}
}