-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
108 lines (108 loc) · 2.9 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
{
"name": "story-squad",
"version": "0.1.0",
"private": true,
"license": "MIT",
"repository": "github:Lambda-School-Labs/labs-spa-starter",
"dependencies": {
"@ant-design/icons": "^4.2.2",
"@craco/craco": "^5.9.0",
"@okta/okta-auth-js": "^4.9.2",
"@okta/okta-react": "^5.1.2",
"@okta/okta-signin-widget": "^5.7.2",
"antd": "^4.4.3",
"axios": "^0.21.1",
"craco": "0.0.3",
"craco-less": "^1.17.0",
"enzyme": "^3.11.0",
"enzyme-adapter-react-17-updated": "^1.0.2",
"eslint": "^7.28.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.20.6",
"less": "^4.1.1",
"node-sass": "^4.0.0",
"prettier": "^2.1.1",
"react": "^17.0.2",
"react-datepicker": "^4.1.1",
"react-dom": "^17.0.2",
"react-image-picker": "^1.1.1",
"react-pdf": "^5.0.0",
"react-plotly.js": "^2.5.0",
"react-redux": "^7.2.1",
"react-router-dom": "^5.2.0",
"react-scripts": "^4.0.3",
"react-sizeme": "^3.0.1",
"react-spring": "^9.2.3",
"react-test-renderer": "^17.0.2",
"redux": "^4.0.5",
"redux-logger": "^3.0.6",
"redux-mock-store": "^1.5.4",
"redux-persist": "^6.0.0",
"redux-thunk": "^2.3.0",
"styled-components": "^5.2.2"
},
"scripts": {
"start": "craco start",
"build": "craco 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": "prettier --write 'src/**/*.{js,jsx,css,scss}'",
"storybook": "start-storybook",
"deploy-storybook": "storybook-to-ghpages",
"prepare": "husky install"
},
"eslintConfig": {
"extends": "react-app"
},
"lint-staged": {
"**/*.js": [
"eslint --fix",
"prettier-eslint --write"
]
},
"husky": {
"hooks": {
"prepare": "husky install",
"pre-commit": "lint-staged"
}
},
"jest": {
"collectCoverageFrom": [
"src/**/*.js"
],
"coveragePathIgnorePatterns": [
"<rootDir>/src/stories/",
"<rootDir>/node_modules/",
"<rootDir>/src/api/"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^11.2.7",
"@testing-library/user-event": "^13.1.9",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-react-hooks": "^4.0.4",
"husky": "6",
"jest-canvas-mock": "^2.2.0",
"jest-environment-jsdom-sixteen": "^2.0.0",
"jest-prop-type-error": "^1.1.0",
"lint-staged": "^11.0.0",
"mini-css-extract-plugin": "^1.6.0",
"prettier-eslint-cli": "^5.0.0"
}
}