-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 2.08 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
63
64
65
66
67
68
69
70
71
{
"name": "react-project",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "NODE_ENV=development webpack serve --progress",
"build": "rm -rf dist && NODE_ENV=production webpack --progress"
},
"private": true,
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.19.6",
"@babel/preset-env": "^7.19.4",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.18.6",
"@linaria/babel-preset": "^4.3.0",
"@linaria/core": "^4.2.2",
"@linaria/react": "^4.3.0",
"@linaria/shaker": "^4.2.4",
"@linaria/stylelint": "^4.1.8",
"@linaria/webpack5-loader": "^4.1.8",
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.8",
"@svgr/webpack": "^6.5.1",
"@types/webpack-env": "^1.18.0",
"autoprefixer": "^10.4.13",
"babel-loader": "^9.1.0",
"babel-plugin-import": "^1.13.5",
"babel-plugin-macros": "^3.1.0",
"copy-webpack-plugin": "^11.0.0",
"core-js": "^3.26.0",
"css-loader": "^6.7.1",
"cssnano": "^5.1.14",
"dotenv-webpack": "^8.0.1",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.5.0",
"mini-css-extract-plugin": "^2.6.1",
"postcss": "^8.4.18",
"postcss-import": "^15.0.0",
"postcss-loader": "^7.0.1",
"postcss-mixins": "^9.0.4",
"postcss-nested": "^6.0.0",
"postcss-selector-matches": "^4.0.0",
"source-map-loader": "^4.0.1",
"style-loader": "^3.3.1",
"stylelint": "^14.14.1",
"stylelint-config-recommended": "^9.0.0",
"tailwindcss": "^3.2.1",
"twin.macro": "^3.0.0-rc.5",
"typescript": "^4.8.4",
"typescript-styled-plugin": "^0.18.2",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.11.1"
},
"dependencies": {
"@reduxjs/toolkit": "^1.8.6",
"@types/react": "^18.0.24",
"@types/react-dom": "^18.0.8",
"axios": "^1.1.3",
"jwt-decode": "^3.1.2",
"rambda": "^7.3.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-redux": "^8.0.4",
"react-refresh": "^0.14.0",
"react-router-dom": "^6.4.3"
}
}