-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 2.37 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
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "giftn-webapp",
"version": "1.0.0",
"main": "src/index.js",
"repository": "git@github.com:jordantsanz/giftn-webapp.git",
"author": "jordantsanz <jordan.t.sanz.22@dartmouth.edu>",
"license": "MIT",
"scripts": {
"winbuild": "yarn clean & SET NODE_ENV=production & webpack --color",
"clean": "rimraf dist",
"windeploy": "yarn winbuild & surge -p dist -d .surge.sh & yarn clean",
"license": "MIT",
"build": "yarn clean; NODE_ENV=production webpack --color",
"start": "NODE_ENV=development webpack-dev-server",
"deploy": "yarn build; surge -p dist -d http://giftn.surge.sh; yarn clean"
},
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/preset-env": "^7.12.11",
"@babel/preset-react": "^7.12.10",
"autoprefixer": "^10.1.0",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.2.2",
"css-loader": "^5.0.1",
"eslint": "^7.16.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-loader": "^4.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^4.2.0",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^4.5.0",
"mini-css-extract-plugin": "^1.3.3",
"node-sass": "^5.0.0",
"postcss-loader": "^4.1.0",
"sass-loader": "^10.1.0",
"style-loader": "^2.0.0",
"webpack": "^5.11.0",
"webpack-cli": "^4.2.0",
"webpack-dev-server": "^3.11.0",
"webpack-sharp-loader": "^1.0.1"
},
"dependencies": {
"@amcharts/amcharts4": "^4.10.13",
"@babel/polyfill": "^7.12.1",
"@fortawesome/fontawesome-svg-core": "^1.2.32",
"@fortawesome/free-solid-svg-icons": "^5.15.1",
"@fortawesome/react-fontawesome": "^0.1.13",
"@material-ui/core": "^4.11.2",
"@material-ui/icons": "^4.11.2",
"axios": "^0.21.0",
"d3": "^6.3.1",
"d3-ease": "^2.0.0",
"d3-interpolate": "^2.0.1",
"jquery": "^3.5.1",
"lodash.debounce": "^4.0.8",
"prop-types": "^15.7.2",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-google-login": "^5.1.25",
"react-modal": "^3.12.1",
"react-redux": "^7.2.2",
"react-router": "^5.2.0",
"react-router-dom": "^5.2.0",
"react-transition-group": "^4.4.1",
"react-uuid": "^1.0.2",
"redux": "^4.0.5",
"redux-thunk": "^2.3.0",
"uuid": "^8.3.2"
}
}