-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 2.11 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
{
"name": "HackDuke",
"version": "1.0.0",
"main": "src/index.js",
"repository": "git@github.com:jordantsanz/HackDuke.git",
"author": "jordantsanz <jordan.t.sanz.22@dartmouth.edu>",
"test": "eslint src",
"scripts": {
"winbuild": "yarn clean & SET NODE_ENV=production & webpack --colors",
"clean": "rimraf dist",
"windeploy": "yarn winbuild & surge -p dist -d .surge.sh & yarn clean",
"license": "MIT",
"build": "yarn clean; NODE_ENV=production webpack --colors",
"start": "NODE_ENV=development webpack-dev-server",
"deploy": "yarn build; surge -p dist -d http://ecoconscioustech.surge.sh; yarn clean"
},
"devDependencies": {
"@babel/core": "^7.12.9",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/polyfill": "^7.12.1",
"@babel/preset-env": "^7.12.7",
"@babel/preset-react": "^7.12.7",
"autoprefixer": "^10.0.4",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.2.2",
"css-loader": "^5.0.1",
"eslint": "^7.15.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.2",
"node-sass": "^5.0.0",
"postcss-loader": "^4.1.0",
"sass-loader": "^10.1.0",
"style-loader": "^2.0.0",
"surge": "^0.21.7",
"webpack": "^4.32.2",
"webpack-cli": "^3.3.2",
"webpack-dev-server": "^3.5.1",
"webpack-merge": "^5.4.0"
},
"dependencies": {
"@amcharts/amcharts4": "^4.10.12",
"axios": "^0.21.0",
"firebase": "^8.1.2",
"firebase-admin": "^9.4.1",
"immutable": "^4.0.0-rc.12",
"jquery": "^3.5.1",
"lodash.debounce": "^4.0.8",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-google-login": "^5.1.25",
"react-redux": "^7.2.2",
"react-router": "^5.2.0",
"react-router-dom": "^5.2.0",
"react-transition-group": "^4.4.1",
"redux": "^4.0.5",
"redux-thunk": "^2.3.0",
"webpack-dev-server": "^3.11.0"
}
}