-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
76 lines (76 loc) · 1.95 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
74
75
76
{
"name": "backchannel",
"version": "1.0.0",
"description": "",
"main": "src/index.tsx",
"scripts": {
"start": "react-app-rewired start",
"build": "react-app-rewired build",
"test": "react-app-rewired test",
"deploy": "npm run build",
"relay": "cross-env DEBUG=* PORT=3001 node test/server.js",
"lint": "prettier -c src",
"format": "prettier -w src"
},
"author": "Karissa McKelvey",
"license": "MIT",
"dependencies": {
"@emotion/babel-plugin": "^11.3.0",
"@emotion/react": "^11.1.5",
"@inkandswitch/backchannel": "^1.0.0",
"backchannel": "1.0.0",
"bson": "^4.4.0",
"buffer": "^6.0.3",
"crypto-browserify": "^3.12.0",
"debug": "^4.3.1",
"jsqr": "^1.4.0",
"qrcode": "^1.4.4",
"react": "^17.0.2",
"react-chat-elements": "^10.14.0",
"react-dom": "^17.0.2",
"react-scripts": "4.0.3",
"react-sketch-canvas": "^5.3.3",
"stream-browserify": "^3.0.0",
"util": "^0.12.3",
"web-vitals": "^1.0.1",
"wouter": "^2.7.4"
},
"devDependencies": {
"@babel/plugin-transform-modules-commonjs": "^7.14.0",
"@localfirst/relay": "^3.2.0",
"@peculiar/webcrypto": "^1.1.7",
"@testing-library/jest-dom": "^5.11.4",
"@testing-library/react": "^11.1.0",
"@testing-library/user-event": "^12.1.10",
"@types/jest": "^26.0.15",
"@types/node": "^12.0.0",
"@types/react": "^17.0.3",
"@types/react-dom": "^17.0.3",
"base64-loader": "^1.0.0",
"cross-env": "^7.0.3",
"jsdoc": "^3.6.6",
"prettier": "2.2.1",
"react-app-rewired": "^2.1.8",
"typescript": "^4",
"web-encoding": "^1.1.5",
"webcrypto-shim": "^0.1.7"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}