-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
76 lines (76 loc) · 2.39 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
74
75
76
{
"name": "ivyhacks",
"version": "1.0.0",
"main": "src/index.js",
"repository": "[email protected]:jordantsanz/IvyHacks.git",
"author": "jordantsanz <[email protected]>",
"license": "MIT",
"scripts": {
"start": "NODE_ENV=development webpack-dev-server",
"test": "eslint src",
"build": "yarn clean; NODE_ENV=production webpack --colors; cp -f _redirects dist/",
"clean": "rimraf dist",
"deploy": "yarn build; surge -p dist -d smartvote.surge.sh; yarn clean"
},
"devDependencies": {
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/preset-react": "^7.10.4",
"autoprefixer": "^10.0.1",
"babel-eslint": "^10.1.0",
"css-loader": "^4.3.0",
"eslint": "^7.10.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-loader": "^4.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-react": "^7.21.2",
"eslint-plugin-react-hooks": "^4.1.2",
"file-loader": "^6.1.0",
"html-webpack-plugin": "^4.5.0",
"mini-css-extract-plugin": "^0.11.2",
"node-sass": "^4.14.1",
"postcss": "^8.1.0",
"postcss-loader": "^4.0.2",
"sass-loader": "^10.0.2",
"style-loader": "^1.2.1",
"webpack": "^4.44.2",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0"
},
"dependencies": {
"@babel/core": "^7.11.6",
"@babel/preset-env": "^7.11.5",
"@fortawesome/fontawesome-svg-core": "^1.2.31",
"@fortawesome/free-solid-svg-icons": "^5.15.0",
"@fortawesome/react-fontawesome": "^0.1.11",
"@react-pdf/renderer": "^1.6.11",
"apify": "^0.21.7",
"axios": "^0.20.0",
"babel-loader": "^8.1.0",
"classnames": "^2.2.6",
"dotenv": "^8.2.0",
"google-map-react": "^2.1.6",
"google-maps-react": "^2.0.6",
"jquery": "^3.5.1",
"lodash.debounce": "^4.0.8",
"node-fetch": "^2.6.1",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-geocode": "^0.2.1",
"react-html5video": "^2.5.1",
"react-input-range": "^1.3.0",
"react-modal": "^3.11.2",
"react-places-autocomplete": "^7.3.0",
"react-print": "^1.3.1",
"react-redux": "^7.2.1",
"react-router": "^5.2.0",
"react-router-dom": "^5.2.0",
"react-transition-group": "^4.4.1",
"react-video-scroll": "^1.0.1",
"redux": "^4.0.5",
"redux-thunk": "^2.3.0",
"surge": "^0.21.6",
"webpack": "^4.44.2",
"webpack-cli": "^3.3.12"
}
}