-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.52 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
{
"name": "katieb-nathana-hackathing2",
"version": "1.0.0",
"main": "src/index.js",
"repository": "https://github.com/dartmouth-cs98/katieb-nathana-hackathing2.git",
"author": "Katie Bernardez <[email protected]>",
"license": "MIT",
"scripts": {
"start": "NODE_ENV=development webpack-dev-server",
"test": "eslint src/**.js",
"build": "yarn clean; NODE_ENV=production webpack --colors",
"clean": "rimraf dist",
"deploy": "yarn build; surge -p dist -d katieb-nathana-hackathing2.surge.sh; yarn clean"
},
"devDependencies": {
"@babel/core": "^7.8.3",
"@babel/preset-env": "^7.8.3",
"@babel/preset-react": "^7.8.3",
"autoprefixer": "^9.7.4",
"babel-eslint": "^10.0.3",
"babel-loader": "^8.0.6",
"babel-polyfill": "^6.26.0",
"css-loader": "^3.4.2",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-loader": "^3.0.3",
"eslint-plugin-import": "^2.20.0",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.18.0",
"file-loader": "^5.0.2",
"html-webpack-plugin": "^3.2.0",
"mini-css-extract-plugin": "^0.9.0",
"node-sass": "^4.13.1",
"postcss-loader": "^3.0.0",
"sass-loader": "^8.0.2",
"style-loader": "^1.1.3",
"surge": "^0.21.3",
"webpack": "^4.41.5",
"webpack-cli": "^3.3.10",
"webpack-dev-server": "^3.10.1"
},
"dependencies": {
"@material-ui/core": "^4.9.0",
"jquery": "^3.4.1",
"prop-types": "^15.7.2",
"react": "^16.12.0",
"react-dom": "^16.12.0"
}
}