-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
69 lines (69 loc) · 1.67 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
{
"name": "houston",
"version": "0.1.0",
"private": true,
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.25",
"@fortawesome/free-solid-svg-icons": "^5.11.2",
"@fortawesome/react-fontawesome": "^0.1.7",
"auth0-js": "^9.8.2",
"bootstrap": "^4.3.1",
"classnames": "^2.2.6",
"enzyme": "^3.10.0",
"enzyme-adapter-react-16": "^1.15.1",
"humps": "^2.0.1",
"husky": "^3.0.9",
"jest": "24.9.0",
"jest-enzyme": "^7.1.1",
"jquery": "^3.3.1",
"lint-staged": "^9.4.3",
"lodash": "^4.17.14",
"normalizr": "^3.3.0",
"popper.js": "^1.16.0",
"prettier": "^1.19.1",
"prop-types": "^15.6.2",
"qrcode.react": "^1.0.0",
"react": "^16.11.0",
"react-dom": "^16.11.0",
"react-highlight-words": "^0.16.0",
"react-json-view": "^1.19.1",
"react-redux": "^7.1.1",
"react-router": "^5.1.2",
"react-router-dom": "^5.1.2",
"react-scripts": "3.2.0",
"react-table": "^6.10.3",
"react-test-renderer": "^16.10.2",
"reactstrap": "^8.1.1",
"redux": "^4.0.1",
"redux-actions": "^2.6.4",
"redux-devtools-extension": "^2.13.5",
"redux-logger": "^3.0.6",
"redux-thunk": "^2.3.0"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"lint-staged": {
"src/**/*.{js,jsx,json,css}": [
"prettier --single-quote --write",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}