This repository was archived by the owner on Jul 22, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 2.97 KB
/
Copy pathpackage.json
File metadata and controls
97 lines (97 loc) · 2.97 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "reactor-ts",
"version": "1.0.0",
"description": "A template to build web app out of the box with react",
"scripts": {
"dev": "cross-env NODE_ENV=development webpack-dev-server",
"start": "npm run dev",
"build": "cross-env NODE_ENV=production webpack",
"clean": "rm -rf build && rm -rf node_modules",
"lint:file": "cross-env eslint . --ext .js,.jsx,.ts,.tsx --fix",
"lint": "cross-env eslint . --ext .js,.jsx,.ts,.tsx --fix.",
"pretty": "cross-env prettier --write '**/*.{j,t}{s,sx}'",
"typecheck": "cross-env tsc"
},
"keywords": [
"react",
"redux",
"typescript",
"webpack"
],
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"author": "virsavik",
"license": "ISC",
"dependencies": {
"@chakra-ui/react": "^1.8.8",
"@emotion/react": "^11.9.0",
"@emotion/styled": "^11.8.1",
"@fortawesome/fontawesome-svg-core": "^6.1.1",
"@fortawesome/free-regular-svg-icons": "^6.1.1",
"@fortawesome/free-solid-svg-icons": "^6.1.1",
"@fortawesome/react-fontawesome": "^0.1.18",
"@hot-loader/react-dom": "^17.0.2",
"@reduxjs/toolkit": "^1.8.1",
"axios": "^0.27.2",
"babel-plugin-macros": "^3.1.0",
"framer-motion": "^6.3.3",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-hook-form": "^7.31.1",
"react-hot-loader": "^4.13.0",
"react-redux": "^7.2.6",
"react-router-dom": "^6.3.0"
},
"devDependencies": {
"@babel/core": "^7.17.0",
"@babel/plugin-transform-runtime": "^7.17.0",
"@babel/preset-env": "^7.16.11",
"@babel/preset-react": "^7.16.7",
"@babel/preset-typescript": "^7.16.7",
"@squoosh/lib": "^0.4.0",
"@types/node": "^17.0.16",
"@types/react": "^17.0.39",
"@types/react-dom": "^17.0.11",
"@types/webpack": "5.28.0",
"@typescript-eslint/eslint-plugin": "^5.11.0",
"@typescript-eslint/parser": "^5.11.0",
"babel-loader": "^8.2.5",
"babel-plugin-module-resolver": "^4.1.0",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^11.0.0",
"cross-env": "^7.0.3",
"css-loader": "^6.7.1",
"css-minimizer-webpack-plugin": "^4.0.0",
"dotenv": "^16.0.1",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-react": "^7.30.0",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.5.0",
"image-minimizer-webpack-plugin": "^3.2.3",
"mini-css-extract-plugin": "^2.6.0",
"path": "^0.12.7",
"prettier": "^2.6.2",
"source-map-loader": "^3.0.1",
"style-loader": "^3.3.1",
"terser-webpack-plugin": "^5.3.1",
"ts-loader": "^9.3.0",
"tsconfig-paths-webpack-plugin": "^3.5.2",
"typescript": "^4.6.4",
"url-loader": "^4.1.1",
"webpack": "^5.72.1",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.9.0",
"webpack-manifest-plugin": "^5.0.0",
"webpack-merge": "^5.8.0"
}
}