forked from VWashingtonCoder/asylum-rg-fe
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
91 lines (91 loc) · 2.41 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
{
"name": "labs-spa-starter",
"browserslist": {
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
],
"production": [
">0.2%",
"not dead",
"not op_mini all"
]
},
"dependencies": {
"@ant-design/icons": "^4.7.0",
"@ant-design/pro-form": "^1.52.13",
"@ant-design/pro-table": "^2.62.7",
"@craco/craco": "^6.4.3",
"@material-ui/core": "^4.12.4",
"@okta/okta-react": "^3.0.2",
"@okta/okta-signin-widget": "^4.1.2",
"@reduxjs/toolkit": "^1.8.2",
"antd": "^4.18.4",
"axios": "^0.21.1",
"craco-less": "^1.20.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.26.1",
"plotly.js": "^1.54.6",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-plotly.js": "^2.4.0",
"react-redux": "^8.0.2",
"react-router-dom": "^5.2.0",
"react-scripts": "^4.0.0",
"redux": "^4.2.0"
},
"devDependencies": {
"@testing-library/dom": "^8.11.3",
"@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"
},
"eslintConfig": {
"extends": "react-app"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"jest": {
"collectCoverageFrom": [
"src/**/*.js"
],
"coveragePathIgnorePatterns": [
"<rootDir>/node_modules/"
]
},
"license": "MIT",
"lint-staged": {
"src/**/*.{js,jsx}": [
"eslint --fix",
"prettier-eslint --write"
]
},
"private": false,
"repository": "github:Lambda-School-Labs/labs-spa-starter",
"scripts": {
"build": "craco --max_old_space_size=4096 build",
"coverage": "npm test -- --coverage --watchAll=false",
"eject": "react-scripts eject",
"format": "prettier --write 'src/**/*.{js,jsx,css,scss}'",
"lint": "eslint 'src/**/*.{js,jsx}'",
"prettier": "prettier --write \"**/*.+(js|jsx|json|css|md)\"",
"start": "node start.js",
"test": "craco test --env=jest-environment-jsdom-sixteen"
},
"version": "0.1.0"
}