-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.36 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.36 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
{
"name": "react-starter-boilerplate-hmr",
"version": "1.0.0",
"description": "React starter boilerplate with Hot Module Replacement, React 16 and Webpack 4",
"main": "index.js",
"author": "Esau Silva <@_esausilva>",
"license": "MIT",
"scripts": {
"dev": "cross-env NODE_ENV=dev webpack-dev-server",
"build": "cross-env NODE_ENV=prod webpack",
"build:bundleanalyzer": "yarn build -- --env.addons=bundleanalyzer",
"test": "react-scripts test --testMatch '<rootDir>/js/src/tests/**/*.js'"
},
"dependencies": {
"@emotion/react": "^11.9.0",
"@emotion/styled": "^11.8.1",
"@mui/icons-material": "^5.8.3",
"@mui/material": "^5.8.3",
"array-move": "^4.0",
"cross-env": "^7.0.2",
"css-loader": "^6.0",
"mini-css-extract-plugin": "^2.0",
"node-sass": "^7.0",
"postcss-loader": "^7.0",
"postcss-preset-env": "^7.7.1",
"query-string": "^8.1.0",
"re-resizable": "^6.1.0",
"react": "^18.2.0",
"react-beautiful-dnd": "^13.1.0",
"react-dom": "^18.2.0",
"react-dropzone": "^14.2.1",
"react-modal": "^3.9.1",
"react-sortable-hoc": "^2.0.0",
"sass-loader": "^13.0",
"style-loader": "^3.0",
"styled-components": "^5.0.1",
"uuid": "^9.0.0"
},
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/plugin-proposal-class-properties": "^7.2.3",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/preset-env": "^7.2.3",
"@babel/preset-react": "^7.0.0",
"autoprefixer": "^10.4.7",
"babel-loader": "^9.1.2",
"base64-inline-loader": "^2.0",
"dotenv-webpack": "^8.0.1",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"html-webpack-plugin": "^5.0",
"postcss": "^8.4.14",
"postcss-cli": "^9.1.0",
"react-hot-loader": "^4.12.8",
"semantic-ui-react": "^2.1.3",
"tailwindcss": "^3.1.2",
"webpack": "^5.0",
"webpack-bundle-analyzer": "^4.0",
"webpack-cli": "^5.0.1",
"webpack-dev-server": "^4.0",
"webpack-merge": "^5.0"
},
"repository": {
"type": "git",
"url": "https://github.com/esausilva/react-starter-boilerplate-hmr.git"
},
"bugs": {
"url": "https://github.com/esausilva/react-starter-boilerplate-hmr/issues"
},
"keywords": [
"react",
"react 16",
"boilerplate",
"semantic ui",
"semantic ui react",
"webpack 4",
"webpack",
"hot module replacement",
"hmr"
]
}