-
Notifications
You must be signed in to change notification settings - Fork 182
/
package.json
66 lines (66 loc) · 1.95 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
{
"name": "react-point-of-sale",
"version": "0.1.0",
"private": true,
"dependencies": {
"@material-ui/icons": "^1.0.0-beta.42",
"autosuggest-highlight": "^3.1.1",
"axios": "^0.18.0",
"classnames": "^2.2.5",
"cross-env": "^6.0.3",
"currency.js": "^1.1.3",
"fast-deep-equal": "^1.1.0",
"immutability-helper": "^2.6.6",
"material-ui": "^1.0.0-beta.47",
"material-ui-icons": "^1.0.0-beta.36",
"material-ui-pickers": "^1.0.0-rc.7",
"moment": "^2.22.1",
"prop-types": "^15.6.1",
"react": "^16.2.0",
"react-autosuggest": "^9.3.4",
"react-dom": "^16.2.0",
"react-number-format": "^3.3.1",
"react-redux": "^5.0.7",
"react-router": "^4.2.0",
"react-router-dom": "^4.2.2",
"react-scripts": "1.1.1",
"react-select": "^1.2.1",
"redux": "^3.7.2",
"redux-logger": "^3.0.6",
"redux-thunk": "^2.2.0",
"reselect": "^3.0.1"
},
"devDependencies": {
"babel-eslint": "^8.2.3",
"eslint": "^4.18.2",
"eslint-config-airbnb": "^16.1.0",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-import": "^2.9.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-prettier": "^2.6.0",
"eslint-plugin-react": "^7.7.0"
},
"scripts": {
"dev:web": "react-scripts start",
"dev:api": "cd api && yarn run dev:api",
"build:web": "react-scripts build",
"build:api": "cd api && yarn run build:api",
"prod:serve": "cd api && yarn run build:api && node build/index.js",
"start:web": "cross-env REACT_APP_IS_PROD=true cross-env REACT_APP_PROD_URL_PREFIX='https://nreact-api.herokuapp.com/api' yarn run dev:web",
"start:api": "cd api && yarn start",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}