-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.34 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.34 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
81
82
{
"name": "coding-against-humility",
"version": "1.0.0",
"main": "index.js",
"author": "Daniel Burbach",
"license": "ISC",
"scripts": {
"start": "webpack-dev-server --open --mode development",
"build": "webpack --config webpack.config.build.js",
"test": "react-scripts test",
"eject": "react-scripts eject"
},
"dependencies": {
"bootstrap": "^4.3.1",
"core-js": "^3.1.3",
"dotenv": "^8.0.0",
"dotenv-webpack": "^1.7.0",
"firebase": "^6.1.1",
"lodash": "^4.17.15",
"prop-types": "^15.7.2",
"react": "^16.8.4",
"react-addons-css-transition-group": "^15.6.2",
"react-auth-firebase": "^1.2.1",
"react-beautiful-dnd": "^11.0.5",
"react-dnd": "^9.3.2",
"react-dnd-html5-backend": "^9.3.2",
"react-dom": "^16.8.4",
"react-modal": "^3.9.1",
"react-pure-grid": "^2.1.1",
"react-redux": "^6.0.1",
"react-redux-firebase": "^3.0.0-alpha.11",
"react-router": "^4.3.1",
"react-router-bootstrap": "^0.24.4",
"react-router-dom": "^4.3.1",
"react-scripts": "^3.0.1",
"recompose": "^0.30.0",
"redux": "^4.0.1",
"redux-auth-wrapper": "^2.1.0",
"redux-thunk": "^2.3.0",
"styled-jsx": "^3.2.1",
"uuid": "^3.3.2"
},
"devDependencies": {
"@babel/core": "7.2.2",
"@babel/plugin-proposal-object-rest-spread": "^7.4.4",
"@babel/preset-env": "^7.3.1",
"@babel/preset-react": "7.0.0",
"babel-core": "^6.26.3",
"babel-jest": "^24.8.0",
"babel-loader": "^8.0.6",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-preset-react-app": "^9.0.0",
"css-loader": "^2.1.0",
"file-loader": "3.0.1",
"html-webpack-plugin": "3.2.0",
"react-hot-loader": "4.6.5",
"style-loader": "^0.23.1",
"url-loader": "1.1.2",
"webpack": "4.29.3",
"webpack-cli": "3.2.3",
"webpack-dev-server": "3.1.14"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"description": "A card game based off of Cards Against Humanity",
"repository": {
"type": "git",
"url": "git+https://github.com/DanBurbach/Coding-Against-Humility.git"
},
"bugs": {
"url": "https://github.com/DanBurbach/Coding-Against-Humility/issues"
},
"homepage": "https://github.com/DanBurbach/Coding-Against-Humility#readme"
}