-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
47 lines (47 loc) · 1.31 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
{
"name": "cleanfolio",
"version": "0.1.0",
"private": true,
"homepage": ".",
"dependencies": {
"@material-ui/core": "^4.12.3",
"@material-ui/icons": "^4.11.2",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^12.0.0",
"@testing-library/user-event": "^13.2.1",
"gh-pages": "^5.0.0",
"prop-types": "^15.7.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-scripts": "^5.0.1",
"uniqid": "^5.4.0",
"web-vitals": "^2.1.0",
"yarn": "^1.22.19"
},
"scripts": {
"start": "react-scripts start --openssl-legacy-provider",
"build": "CI=false && react-scripts --openssl-legacy-provider build",
"test": "react-scripts --openssl-legacy-provide testr",
"eject": "react-scripts eject --openssl-legacy-provider",
"format": "prettier --write \"**/*.+(js|jsx|json|css|md)\"",
"deploy": "gh-pages -d build"
},
"browserslist": {
"production": [
">0.2%",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"prettier": "^2.3.2"
},
"overrides": {
"nth-check": "https://registry.npmjs.org/nth-check/-/nth-check-2.1.1.tgz",
"postcss": "https://registry.npmjs.org/postcss/-/postcss-8.4.31.tgz"
}
}