forked from BloomTech-Labs/human-rights-first-asylum-fe-a
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
124 lines (124 loc) · 3.58 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
{
"name": "labs-spa-starter",
"version": "0.1.0",
"private": false,
"license": "MIT",
"repository": "github:Lambda-School-Labs/labs-spa-starter",
"dependencies": {
"@ant-design/icons": "^4.6.2",
"@appbaseio/reactivesearch": "^3.14.2",
"@casl/ability": "^5.2.2",
"@casl/react": "^2.2.2",
"@craco/craco": "^5.9.0",
"@date-io/date-fns": "^2.10.6",
"@hookform/resolvers": "^2.5.2",
"@material-ui/core": "^4.11.2",
"@material-ui/data-grid": "^4.0.0-alpha.11",
"@material-ui/icons": "^4.11.2",
"@material-ui/lab": "^4.0.0-alpha.57",
"@material-ui/pickers": "^3.2.10",
"@mikecousins/react-pdf": "^5.5.1",
"@okta/okta-auth-js": "^4.8.0",
"@okta/okta-react": "^5.0.0",
"@okta/okta-signin-widget": "^4.1.2",
"@react-pdf/renderer": "^2.0.4",
"antd": "^4.15.1",
"axios": "^0.21.1",
"craco-less": "^1.17.0",
"date-fns": "^2.16.1",
"dotenv": "^8.2.0",
"feather-icons-react": "^0.4.3",
"logger": "0.0.1",
"moment": "^2.29.1",
"mui-datatables": "^3.7.1",
"plotly.js": "^1.54.6",
"react": "^16.13.1",
"react-data-grid": "^7.0.0-canary.33",
"react-dom": "^16.13.1",
"react-draggable": "^4.4.3",
"react-highlight-words": "^0.17.0",
"react-hook-form": "^6.15.8",
"react-pdf-js": "^5.1.0",
"react-plotly.js": "^2.4.0",
"react-promise-loader": "^1.0.5",
"react-promise-tracker": "^2.1.0",
"react-redux": "^7.2.2",
"react-router": "^5.2.0",
"react-router-dom": "^5.2.0",
"react-scripts": "3.4.1",
"redux": "^4.0.5",
"redux-logger": "^3.0.6",
"redux-thunk": "^2.3.0",
"semantic-ui-react": "^2.0.3",
"styled-components": "^5.2.1"
},
"scripts": {
"start": "craco --max_old_space_size=4096 start",
"build": "craco --max_old_space_size=4096 build",
"test": "craco test --env=jest-environment-jsdom-sixteen",
"eject": "react-scripts eject",
"prettier": "prettier --write \"**/*.+(js|jsx|json|css|md)\"",
"coverage": "npm test -- --coverage --watchAll=false",
"lint": "eslint 'src/**/*.{js,jsx}' --fix",
"format": "npx prettier --write 'src/**/*.{js,jsx,css,scss}'",
"storybook": "start-storybook",
"deploy-storybook": "storybook-to-ghpages"
},
"eslintConfig": {
"extends": "react-app"
},
"lint-staged": {
"src/**/*.{js,jsx}": [
"eslint --fix",
"prettier-eslint --write"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"jest": {
"collectCoverageFrom": [
"src/**/*.js"
],
"coveragePathIgnorePatterns": [
"<rootDir>/src/stories/",
"<rootDir>/node_modules/"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@storybook/addon-actions": "^5.3.19",
"@storybook/addon-knobs": "^5.3.19",
"@storybook/addon-notes": "^5.3.19",
"@storybook/addons": "^5.3.19",
"@storybook/react": "^5.3.19",
"@storybook/storybook-deployer": "^2.8.6",
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^10.2.1",
"@testing-library/user-event": "^7.2.1",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-react-hooks": "^4.0.4",
"husky": "^4.2.5",
"jest-canvas-mock": "^2.2.0",
"jest-environment-jsdom-sixteen": "^1.0.3",
"jest-prop-type-error": "^1.1.0",
"kleur": "^4.1.1",
"lint-staged": "^10.2.11",
"prettier-eslint-cli": "^5.0.0",
"prompts": "^2.3.2",
"yaml": "^1.10.0"
}
}