-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.52 KB
/
Copy pathpackage.json
File metadata and controls
83 lines (83 loc) · 2.52 KB
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
81
82
83
{
"name": "BlockSettle",
"version": "0.0.1",
"description": "",
"author": "BlockSettle AB",
"license": "ISC",
"main": "index.tsx",
"engines": {
"node": ">=14 <15"
},
"scripts": {
"start:testing": "cross-env PORT=8080 REACT_APP_MODE=testing react-scripts start",
"start:live": "cross-env PORT=8080 REACT_APP_MODE=live react-scripts start",
"start:prod": "cross-env PORT=8080 REACT_APP_MODE=prod react-scripts start",
"build:dev": "cross-env REACT_APP_MODE=dev react-scripts build",
"build:testing": "cross-env REACT_APP_MODE=testing react-scripts build",
"build:live": "cross-env REACT_APP_MODE=live react-scripts build",
"build:prod": "cross-env REACT_APP_MODE=prod react-scripts build",
"lint": "eslint ."
},
"dependencies": {
"@material-ui/core": "4.11.4",
"@material-ui/lab": "4.0.0-alpha.57",
"camelcase-keys": "7.0.1",
"ibantools": "4.1.3",
"pluralize": "^8.0.0",
"react": "17.0.2",
"react-country-flag": "^2.3.1",
"react-device-detect": "2.1.2",
"react-dom": "17.0.2",
"react-qr-code": "^2.0.3",
"react-query": "^3.34.5",
"react-redux": "7.2.6",
"react-router-dom": "5.2.0",
"redux": "4.1.2",
"redux-awesome-socket-middleware": "1.1.5",
"redux-persist": "6.0.0",
"redux-saga": "1.1.3",
"reselect": "4.1.5",
"snakecase-keys": "5.1.2"
},
"devDependencies": {
"@redux-saga/types": "1.1.0",
"@types/node": "16.11.12",
"@types/pluralize": "^0.0.29",
"@types/qrcode.react": "1.0.1",
"@types/react": "17.0.5",
"@types/react-dom": "17.0.3",
"@types/react-redux": "7.1.20",
"@types/react-router-dom": "5.1.7",
"@types/redux-logger": "3.0.9",
"@types/webpack-env": "1.16.3",
"@typescript-eslint/eslint-plugin": "4.22.1",
"@typescript-eslint/parser": "4.22.1",
"cross-env": "7.0.3",
"eslint": "7.25.0",
"eslint-config-airbnb-typescript": "12.3.1",
"eslint-plugin-array-func": "3.1.7",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-jest": "24.3.6",
"eslint-plugin-jsx-a11y": "6.4.1",
"eslint-plugin-react": "7.23.2",
"eslint-plugin-react-hooks": "4.2.0",
"eslint-plugin-unicorn": "31.0.0",
"file-loader": "6.2.0",
"jest": "26.6.0",
"react-scripts": "4.0.3",
"redux-logger": "3.0.6",
"typescript": "4.5.4"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}