-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
62 lines (62 loc) · 1.6 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
{
"name": "fast-create-react-app",
"version": "1.0.0",
"description": "A very fast version of Create-React-App(CRA) with Typescript and ESlint support",
"main": "index.jsx",
"scripts": {
"dev": "webpack-dev-server --node-env=development --port=4000",
"build": "webpack build --node-env=production",
"serve": "serve -s build"
},
"keywords": [
"create-react-app",
"typescript",
"cra",
"react-app",
"webpack",
"react",
"cra",
"eslint",
"with",
"webpack"
],
"author": "Ashish Prajapati <ashishprajapati357753357@gmail.com> (https://github.com/Ashish-simpleCoder)",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.19.6",
"@babel/preset-env": "^7.19.4",
"@babel/preset-react": "^7.18.6",
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.8",
"babel-loader": "^8.2.5",
"css-loader": "^6.7.1",
"css-minimizer-webpack-plugin": "^4.2.2",
"dotenv-webpack": "^8.0.1",
"html-webpack-plugin": "^5.5.0",
"mini-css-extract-plugin": "^2.6.1",
"react-dev-utils": "^12.0.1",
"react-refresh": "^0.14.0",
"sass": "^1.55.0",
"sass-loader": "^13.1.0",
"style-loader": "^3.3.1",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.11.1",
"webpack-manifest-plugin": "^5.0.0"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"dependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
}
}