-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·60 lines (60 loc) · 1.55 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
{
"name": "frontend-2021",
"author": "Thomas Peace <[email protected]>",
"version": "1.0.0",
"description": "Minimal frontend",
"main": "index.js",
"license": "MIT",
"private": false,
"keywords": [
"minimal",
"boilerplate",
"react",
"redux",
"2021",
"static",
"web",
"app"
],
"scripts": {
"dev": "webpack serve --env development",
"build": "webpack --env production",
"test": "jest"
},
"dependencies": {
"@reduxjs/toolkit": "^1.5.0",
"classnames": "^2.3.1",
"cross-env": "^7.0.3",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-redux": "^7.2.4",
"react-router-dom": "^5.2.0"
},
"devDependencies": {
"@babel/core": "^7.14.2",
"@babel/polyfill": "^7.12.1",
"@babel/preset-env": "^7.14.2",
"@babel/preset-react": "^7.12.7",
"@pmmmwh/react-refresh-webpack-plugin": "^0.4.3",
"@testing-library/jest-dom": "^5.12.0",
"@testing-library/react": "^11.2.7",
"@testing-library/user-event": "^13.1.9",
"autoprefixer": "^10.2.3",
"babel-loader": "^8.2.1",
"css-loader": "^5.2.4",
"eslint-plugin-jest-dom": "^3.9.0",
"eslint-plugin-react": "^7.23.2",
"eslint-plugin-testing-library": "^4.4.0",
"html-webpack-plugin": "^5.3.1",
"jest": "^26.6.3",
"mini-css-extract-plugin": "^1.6.0",
"postcss": "^8.2.15",
"postcss-loader": "^5.3.0",
"react-refresh": "^0.10.0",
"style-loader": "^2.0.0",
"tailwindcss": "^2.1.2",
"webpack": "^5.37.0",
"webpack-cli": "^4.7.0",
"webpack-dev-server": "^3.11.2"
}
}