-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.73 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
{
"name": "starterpack-andualemu",
"version": "1.0.0",
"main": "src/index.js",
"repository": "https://github.com/dartmouth-cs52-18S/starterpack-andualemu.git",
"author": "Andualem Kelbessa <andualem.u.kelbessa.19@dartmouth.edu>",
"license": "MIT",
"scripts": {
"build": "yarn clean; NODE_ENV=production webpack --colors",
"clean": "rimraf dist",
"deploy": "yarn build; surge -p dist -d andualem-cs52-starter-v4.surge.sh; yarn clean",
"start": "NODE_ENV=development webpack-serve ./webpack.config.js"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-eslint": "^8.2.3",
"babel-loader": "^7.1.4",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"connect-history-api-fallback": "^1.5.0",
"css-loader": "^0.28.11",
"eslint": "^4.19.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-loader": "^2.0.0",
"eslint-plugin-import": "^2.11.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.7.0",
"file-loader": "^1.1.11",
"html-webpack-plugin": "^3.2.0",
"koa-connect": "^2.0.1",
"mini-css-extract-plugin": "^0.4.0",
"node-sass": "^4.8.3",
"postcss-loader": "^2.1.3",
"sass-loader": "^7.0.1",
"style-loader": "^0.20.3",
"surge": "^0.20.1",
"webpack": "^4.5.0",
"webpack-cli": "^2.0.14",
"webpack-serve": "^0.3.1"
},
"dependencies": {
"autoprefixer": "^8.2.0",
"axios": "^0.18.0",
"jquery": "^3.3.1",
"lodash.debounce": "^4.0.8",
"react": "^16.3.2",
"react-dom": "^16.3.2",
"react-redux": "^5.0.7",
"react-router": "^4.2.0",
"react-router-dom": "^4.2.2",
"redux": "^4.0.0"
}
}