-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
80 lines (80 loc) · 2.35 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
77
78
79
80
{
"name": "@floatingfile/client",
"version": "1.5.0",
"private": true,
"dependencies": {
"@chakra-ui/react": "^1.6.5",
"@datadog/browser-logs": "^4.11.5",
"@emotion/react": "^11",
"@emotion/styled": "^11",
"@floatingfile/types": "0.0.1",
"@floatingfile/ui": "0.0.1",
"@honeybadger-io/js": "^3.1.0",
"@honeybadger-io/react": "0.0.8",
"axios": "^0.21.2",
"file-saver": "^2.0.5",
"framer-motion": "^4",
"http-proxy-middleware": "^0.20.0",
"prop-types": "^15.7.2",
"qrcode.react": "^1.0.0",
"react": "^16.13.1",
"react-copy-to-clipboard": "^5.0.2",
"react-device-detect": "^1.13.1",
"react-dom": "^16.9.0",
"react-dropzone": "^10.1.8",
"react-ga4": "^2.1.0",
"react-icons": "^4.2.0",
"react-query": "^3.5.5",
"react-router-dom": "^5.0.1",
"react-scripts": "5.0.0",
"react-spinners": "^0.9.0",
"uuid": "^8.3.2"
},
"scripts": {
"start": "react-scripts start",
"dev": "react-scripts start",
"build:master": "yarn run build",
"build": "react-scripts build && rm -rf out && mv build out",
"build:staging": "env-cmd -f .env.staging react-scripts build && rm -rf out && mv build out",
"build:beta": "env-cmd -f .env.beta react-scripts build && rm -rf out && mv build out",
"test": "react-scripts test",
"eject": "react-scripts eject",
"lint": "eslint src/ --ext .ts,.tsx,.js,.jsx",
"format": "prettier --write ."
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@types/file-saver": "^2.0.5",
"@types/jest": "^26.0.20",
"@types/node": "^14.14.31",
"@types/qrcode.react": "^1.0.1",
"@types/react": "^17.0.2",
"@types/react-copy-to-clipboard": "^5.0.0",
"@types/react-dom": "^17.0.1",
"@types/react-router-dom": "^5.1.7",
"@types/uuid": "^8.3.0",
"@typescript-eslint/eslint-plugin": "^5.10.0",
"@typescript-eslint/parser": "^5.10.0",
"env-cmd": "^10.1.0",
"eslint": "^8.7.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"prettier": "^2.3.2",
"typescript": "^4.5.4"
}
}