-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 2.14 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
{
"name": "mycourseschedule",
"version": "0.1.0",
"description": "An online interface to schedule your courses, originally built for students of UoG, WLU, and UW.",
"private": true,
"license": "MIT",
"scripts": {
"test": "echo \"I'm lazy and need to add tests...\" && exit 0",
"dev": "yarn start",
"start": "NODE_ENV=development webpack-dev-server --env.WEBADVISOR_API=https://webadvisor-api.herokuapp.com/ --config webpack.dev.js --colors --progress --no-info",
"build": "NODE_ENV=production webpack --env.WEBADVISOR_API=https://webadvisor-api.herokuapp.com/ --config webpack.prod.js",
"prod": "NODE_ENV=production http-server \"./dist\" -p ${PORT:=80} --utc --push-state",
"heroku-postbuild": "yarn build",
"lint": "prettier --check \"{src/**/*.js,*.js}\"",
"lint-fix": "prettier --write \"{src/**/*.js,*.js}\""
},
"engines": {
"node": "10.x"
},
"author": "Kanoa Haley",
"browserslist": "> 0.01%",
"prettier": {
"singleQuote": true,
"trailingComma": "es5"
},
"dependencies": {
"@babel/core": "7.8.6",
"@babel/plugin-proposal-class-properties": "7.8.3",
"@babel/plugin-proposal-decorators": "7.8.3",
"@babel/polyfill": "7.8.3",
"@babel/preset-env": "7.8.6",
"@babel/preset-react": "7.8.3",
"autoprefixer": "9.7.4",
"babel-loader": "8.0.6",
"babel-plugin-lodash": "3.3.4",
"classnames": "2.2.6",
"clean-webpack-plugin": "3.0.0",
"core-js": "3",
"css-loader": "3.4.2",
"file-loader": "5.1.0",
"html-webpack-plugin": "3.2.0",
"lodash": "4.17.15",
"mini-css-extract-plugin": "0.9.0",
"node-sass": "4.13.1",
"postcss-loader": "3.0.0",
"prettier": "^1.18.2",
"prop-types": "15.7.2",
"react": "16.13.0",
"react-dom": "16.13.0",
"react-icons": "3.9.0",
"react-paginate": "6.3.2",
"react-redux": "7.2.0",
"react-router-dom": "5.1.2",
"redux": "4.0.5",
"redux-thunk": "2.3.0",
"reselect": "4.0.0",
"sass-loader": "8.0.2",
"sifter": "0.5.4",
"spa-http-server": "0.9.0",
"webpack": "4.41.6",
"webpack-cli": "3.3.11",
"webpack-dev-server": "3.10.3",
"webpack-merge": "4.2.2"
}
}