-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
90 lines (90 loc) · 2.54 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "coursewatch",
"version": "0.2.1-beta.1",
"homepage": "https://web.coursewatch.sueztech.com",
"bugs": "https://github.com/abraha2d/coursewatch/issues",
"license": "UNLICENSED",
"private": true,
"author": "Kevin Abraham <kev@gatech.edu>",
"repository": "github:abraha2d/coursewatch",
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"generate": "plop --plopfile internals/generators/index.js",
"storybook": "start-storybook -p 9009 -s public",
"build-storybook": "build-storybook -s public",
"prettify": "prettier --write",
"precommit": "lint-staged",
"analyze": "source-map-explorer build/static/js/main.*",
"predeploy": "yarn build",
"deploy": "gh-pages -d build"
},
"dependencies": {
"@material-ui/core": "^1.3.0",
"@material-ui/icons": "^1.1.0",
"axios": "^1.7.4",
"classnames": "^2.2.6",
"connected-react-router": "^4.3.0",
"history": "^4.7.2",
"immutable": "^3.8.2",
"invariant": "^2.2.4",
"lodash": "^4.17.21",
"prop-types": "*",
"react": "^16.4.1",
"react-autosuggest": "^9.3.4",
"react-dom": "^16.4.1",
"react-helmet": "^5.2.0",
"react-redux": "^5.0.7",
"react-router-dom": "^4.3.1",
"react-scripts": "1.1.4",
"redux": "^4.0.0",
"redux-immutable": "^4.0.0",
"redux-saga": "^0.16.0",
"reselect": "^3.0.1"
},
"devDependencies": {
"@storybook/addon-actions": "^3.4.8",
"@storybook/addon-backgrounds": "^3.4.8",
"@storybook/addon-console": "^1.0.4",
"@storybook/addon-info": "^3.4.8",
"@storybook/addon-knobs": "^3.4.8",
"@storybook/addon-links": "^3.4.8",
"@storybook/addon-options": "^3.4.8",
"@storybook/addon-viewport": "^3.4.8",
"@storybook/addons": "^3.4.8",
"@storybook/react": "^3.4.8",
"babel-core": "^6.26.3",
"babel-runtime": "^6.26.0",
"eslint": "^5.0.1",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-prettier": "^2.6.1",
"gh-pages": "^5.0.0",
"husky": "^0.14.3",
"lint-staged": "^7.2.0",
"plop": "^2.0.0",
"prettier": "^1.13.6",
"source-map-explorer": "^1.5.0"
},
"eslintConfig": {
"extends": [
"plugin:prettier/recommended"
],
"parser": "babel-eslint"
},
"lint-staged": {
"src/**/*.{js,jsx,json,css}": [
"prettier --write",
"git add"
]
},
"proxy": {
"/api": {
"target": "http://localhost:9000",
"pathRewrite": {
"^/api/": "/"
}
}
}
}