-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 2.14 KB
/
Copy pathpackage.json
File metadata and controls
65 lines (65 loc) · 2.14 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "react-template",
"version": "1.2.1",
"description": "A well documented and opinionated starter template for React",
"main": "index.js",
"scripts": {
"build:dev": "webpack --mode development",
"build:prod": "webpack --mode production --env production",
"analyze:dev": "webpack --env analyze",
"analyze:prod": "webpack --env analyze --env production --mode production",
"develop": "webpack serve --progress"
},
"keywords": [
"react",
"template",
"typescript",
"ts"
],
"author": "Robert Corponoi",
"license": "MIT",
"dependencies": {
"@reduxjs/toolkit": "^2.2.5",
"clsx": "^2.0.0",
"dotenv": "^16.0.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-redux": "^9.1.2",
"react-router-dom": "^6.10.0"
},
"devDependencies": {
"@babel/cli": "^7.17.0",
"@babel/core": "^7.17.2",
"@babel/preset-env": "^7.21.4",
"@babel/preset-react": "^7.16.7",
"@babel/preset-typescript": "^7.21.4",
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.4",
"@types/preval.macro": "^3.0.0",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.0.6",
"@types/react-redux": "^7.1.22",
"@typescript-eslint/eslint-plugin": "^7.10.0",
"@typescript-eslint/parser": "^7.9.0",
"autoprefixer": "^10.4.14",
"babel-loader": "^9.1.0",
"babel-plugin-macros": "^3.1.0",
"css-loader": "^7.1.2",
"eslint": "^8.56.0",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"postcss": "^8.4.16",
"postcss-loader": "^8.1.1",
"prettier": "^3.0.3",
"preval.macro": "^5.0.0",
"react-refresh": "^0.14.0",
"react-refresh-typescript": "^2.0.3",
"style-loader": "^4.0.0",
"tailwindcss": "^3.3.1",
"ts-loader": "^9.2.5",
"webpack": "^5.77.0",
"webpack-bundle-analyzer": "^4.4.2",
"webpack-cli": "^5.0.0",
"webpack-dev-server": "^5.0.4"
}
}