-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.61 KB
/
Copy pathpackage.json
File metadata and controls
48 lines (48 loc) · 1.61 KB
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
{
"name": "react-boilerplate",
"version": "1.0.0",
"scripts": {
"start": "cross-env NODE_ENV=development webpack serve --config webpack/webpack.config.dev.js",
"build": "cross-env NODE_ENV=production webpack --config webpack/webpack.config.prod.js",
"serve": "cross-env NODE_ENV=production webpack --config webpack/webpack.config.prod.js && cross-env serve dist/",
"lint": "eslint --ext .js,.jsx,.ts,.tsx src/",
"lint:fix": "eslint --fix --ext .js,.jsx,.ts,.tsx src/"
},
"author": "Maciek@strzelbicki.pl",
"license": "ISC",
"dependencies": {
"@svgr/webpack": "^8.1.0",
"@types/react": "^18.2.15",
"axios": "^1.5.0",
"http-status-codes": "^2.2.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.16.0",
"react-toastify": "^9.1.3",
"styled-components": "^6.0.8",
"url-loader": "^4.1.1"
},
"devDependencies": {
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.10",
"@types/react-dom": "^18.2.7",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"cross-env": "^7.0.3",
"eslint": "^8.45.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-better-styled-components": "^1.1.2",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-react": "^7.32.2",
"fork-ts-checker-webpack-plugin": "^8.0.0",
"html-webpack-plugin": "^5.5.3",
"mini-css-extract-plugin": "^2.7.6",
"ts-loader": "^9.4.4",
"typescript": "^5.1.6",
"webpack": "^5.88.1",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1"
},
"resolutions": {
"styled-components": "^5"
}
}