-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.74 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
{
"name": "equipment",
"version": "0.1.0",
"description": "This is a tool to manage your Pathfinder equipment",
"main": "index.js",
"repository": "https://github.com/owlbeardm/equipment.git",
"author": "Nadzeya Ivashchanka & Mikita Kukavenka",
"license": "MIT",
"dependencies": {
"babel-eslint": "^10.1.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-redux": "^7.2.6",
"redux": "^4.0.5",
"redux-form": "^8.3.8"
},
"scripts": {
"build": "webpack --config webpack.js --mode=production",
"start": "webpack-dev-server --hot --open --config webpack.js --mode=development",
"lint": "eslint src/"
},
"devDependencies": {
"@babel/core": "^7.16.7",
"@babel/plugin-proposal-class-properties": "^7.16.7",
"@babel/preset-env": "^7.13.9",
"@babel/preset-react": "^7.16.7",
"babel-loader": "^8.2.3",
"clean-webpack-plugin": "^4.0.0",
"css-loader": "^5.2.7",
"eslint": "^8.6.0",
"eslint-config-react-app": "^7.0.0",
"eslint-config-standard": "^15.0.1",
"eslint-plugin-flowtype": "^8.0.2",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"eslint-plugin-standard": "^5.0.0",
"file-loader": "^6.2.0",
"html-loader": "^1.3.2",
"html-webpack-plugin": "^4.5.2",
"mini-css-extract-plugin": "^1.6.2",
"node-sass": "^5.0.0",
"optimize-css-assets-webpack-plugin": "^6.0.1",
"sass-loader": "^10.1.1",
"terser-webpack-plugin": "^4.2.3",
"uglifyjs-webpack-plugin": "^2.2.0",
"webpack": "^4.46.0",
"webpack-cli": "^4.9.1",
"webpack-dev-server": "^4.7.2"
}
}