-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 2.6 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
{
"name": "reddit-feed",
"version": "0.0.2",
"description": "Reddit Feed By bestestcode",
"keywords": [
"react",
"redux",
"reddit"
],
"author": "bestestcode",
"license": "MIT",
"dependencies": {
"axios": "^0.17.0",
"axios-mock-adapter": "^1.9.0",
"enzyme": "^3.1.1",
"enzyme-adapter-react-16": "^1.0.4",
"enzyme-redux": "^0.1.7",
"enzyme-to-json": "^3.2.1",
"font-awesome": "^4.7.0",
"history": "^4.6.3",
"node-sass-chokidar": "^0.0.3",
"npm-run-all": "^4.1.1",
"prop-types": "^15.6.0",
"query-string": "^5.0.1",
"react": "^16.0.0",
"react-addons-shallow-compare": "^15.6.2",
"react-addons-test-utils": "^15.6.2",
"react-body-classname": "^1.2.0",
"react-bootstrap": "^0.31.5",
"react-dom": "^16.0.0",
"react-infinite-scroller": "^1.1.1",
"react-materialize": "^1.0.13",
"react-redux": "^5.0.6",
"react-redux-toastr": "^7.1.6",
"react-router-bootstrap": "^0.24.4",
"react-router-dom": "^4.1.2",
"react-router-redux": "^4.0.6",
"react-scripts": "1.0.15",
"react-search-input": "^0.11.3",
"react-test-renderer": "^16.0.0",
"react-timestamp": "^4.2.1",
"redux": "^3.7.2",
"redux-connect": "^6.0.0",
"redux-devtools-extension": "^2.13.2",
"redux-form": "^7.1.2",
"redux-logger": "^3.0.6",
"redux-mock-store": "^1.3.0",
"redux-promise": "^0.5.3",
"redux-socket.io": "^1.4.0",
"redux-thunk": "^2.2.0",
"socket.io-client": "^2.0.4"
},
"scripts": {
"build-css": "node-sass-chokidar --include-path ./src --include-path ./node_modules src/ -o src/",
"watch-css": "npm run build-css && node-sass-chokidar --include-path ./src --include-path ./node_modules src/ -o src/ --watch --recursive",
"start-js": "sh -ac '. ./.env.${REACT_APP_ENV}; react-scripts start'",
"start": "REACT_APP_ENV=staging npm-run-all -p watch-css start-js",
"start:staging": "REACT_APP_ENV=staging npm-run-all -p watch-css start-js",
"start:production": "REACT_APP_ENV=production npm-run-all -p watch-css start-js",
"build-js": "sh -ac '. ./.env.${REACT_APP_ENV}; react-scripts build'",
"build": "npm-run-all build-css build-js",
"build:staging": "REACT_APP_ENV=staging npm-run-all build-css build-js",
"build:production": "REACT_APP_ENV=production npm-run-all build-css build-js",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject"
},
"devDependencies": {
"eslint": "4.10.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-react": "^7.5.1"
}
}