This repository has been archived by the owner on Jan 10, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.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
{
"name": "react-demo-app",
"version": "0.1.0",
"private": true,
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"preview": "npm run build && servor ./dist/react-demo-app/ index.html 4300",
"deploy": "npm run build && npm run prepare-404",
"prepare-404": "cd dist/react-demo-app && cp index.html 404.html",
"lint": "eslint .",
"format:check": "prettier -l .",
"format:write": "prettier -w ."
},
"overrides": {
"nth-check": "~2.1.0",
"postcss": "~8.4.0"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "~6.4.0",
"@fortawesome/free-solid-svg-icons": "~6.4.0",
"@fortawesome/react-fontawesome": "~0.2.0",
"@redux-devtools/extension": "~3.2.0",
"@reduxjs/toolkit": "~1.9.0",
"@testing-library/jest-dom": "~5.16.0",
"@testing-library/react": "~14.0.0",
"@testing-library/user-event": "~14.4.0",
"bootstrap": "~5.3.0-alpha3",
"react": "~18.2.0",
"react-dom": "~18.2.0",
"react-redux": "~8.0.0",
"react-router-dom": "~6.11.0",
"react-scripts": "~5.0.0",
"redux-thunk": "~2.4.0",
"sass": "~1.62.0",
"web-vitals": "~3.3.0"
},
"devDependencies": {
"@redux-devtools/core": "~3.13.0",
"eslint-config-prettier": "~8.8.0",
"eslint-plugin-prettier": "~4.2.0",
"prettier": "~2.8.0",
"prettier-plugin-organize-imports": "~3.2.0",
"servor": "~4.0.0"
}
}