-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.79 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
{
"name": "officemap3-react",
"version": "0.1.0",
"private": true,
"devDependencies": {
"babel-jest": "^21.2.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"enzyme": "^3.1.1",
"enzyme-adapter-react-16": "^1.0.4",
"eslint": "^4.10.0",
"eslint-config-airbnb": "^16.0.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-react": "^7.4.0",
"fetch-mock": "^5.13.1",
"jest": "^21.2.1",
"react-scripts": "1.0.17",
"react-test-renderer": "^16.1.0",
"redux-devtools": "^3.4.0",
"redux-mock-store": "^1.3.0"
},
"dependencies": {
"bootstrap": "^3.3.7",
"es6-promise": "^4.1.1",
"history": "^4.7.2",
"immutable": "^3.8.2",
"isomorphic-fetch": "^2.2.1",
"lodash": "^4.17.4",
"prop-types": "^15.6.0",
"query-string": "^5.0.1",
"react": "^16.1.0",
"react-bootstrap": "^0.31.3",
"react-dom": "^16.1.0",
"react-immutable-proptypes": "^2.1.0",
"react-redux": "^5.0.6",
"react-resize-detector": "^1.1.0",
"react-router": "^4.2.0",
"react-router-dom": "^4.2.2",
"react-router-redux": "^5.0.0-alpha.6",
"redux": "^3.7.2",
"redux-devtools-extension": "^2.13.2",
"redux-logger": "^3.0.6",
"redux-thunk": "^2.2.0",
"styled-components": "^2.2.1",
"underscore": "^1.8.3"
},
"scripts": {
"start": "react-scripts start",
"build": "if [ $REACT_APP_ENV ]; then sh -ac '. ./.env.${REACT_APP_ENV}; react-scripts build'; else react-scripts build; fi",
"build:local": "REACT_APP_ENV=local npm run build",
"build:staging": "REACT_APP_ENV=staging npm run build",
"build:production": "REACT_APP_ENV=production npm run build",
"test": "react-scripts test --env=jsdom --verbose",
"eject": "react-scripts eject"
}
}