-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.78 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
{
"name": "fifa_match_generator",
"version": "1.0.0",
"description": "This application allows a user to generate two random teams for themselves and a friend to play with in a FIFA 21 match with the ability to register and track their previous results against their friends.",
"main": "index.js",
"scripts": {
"dev": "webpack --mode development --watch ./fifamatchgenerator/frontend/src/index.js --output ./fifamatchgenerator/frontend/static/frontend/main.js",
"build": "webpack --mode production ./fifamatchgenerator/frontend/src/index.js --output ./fifamatchgenerator/frontend/static/frontend/main.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AKP-13/fifa_match_generator.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/AKP-13/fifa_match_generator/issues"
},
"homepage": "https://github.com/AKP-13/fifa_match_generator#readme",
"devDependencies": {
"@babel/core": "^7.11.6",
"@babel/preset-env": "^7.11.5",
"@babel/preset-react": "^7.10.4",
"@iconify-icons/carbon": "^1.1.1",
"@iconify/react": "^1.1.3",
"babel-loader": "^8.1.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"css-loader": "^5.0.0",
"html-webpack-plugin": "^4.3.0",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"style-loader": "^2.0.0",
"webpack": "^4.44.2",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0"
},
"dependencies": {
"axios": "^0.21.1",
"prop-types": "^15.7.2",
"react-alert": "^7.0.2",
"react-alert-template-basic": "^1.0.0",
"react-redux": "^7.2.1",
"react-router-dom": "^5.2.0",
"react-transition-group": "^4.4.1",
"redux": "^4.0.5",
"redux-devtools-extension": "^2.13.8",
"redux-thunk": "^2.3.0"
}
}