-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
69 lines (69 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
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "client",
"version": "0.1.0",
"private": true,
"proxy": {
"/api": {
"target": "http://localhost:3000"
}
},
"dependencies": {
"@tinymce/tinymce-react": "^2.2.5",
"axios": "^0.18.0",
"bootstrap": "^4.1.1",
"font-awesome": "^4.7.0",
"moment": "^2.22.2",
"node-sass-chokidar": "^1.3.3",
"npm-run-all": "^4.1.3",
"query-string": "^6.1.0",
"rc-collapse": "^1.9.3",
"react": "^16.5.2",
"react-bootstrap": "^0.32.1",
"react-bootstrap-timezone-picker": "^1.0.12",
"react-collapse": "^4.0.3",
"react-dom": "^16.4.1",
"react-dropzone": "^6.0.0",
"react-motion": "^0.5.2",
"react-popper": "^1.0.0",
"react-redux": "^5.0.7",
"react-redux-form": "^1.16.9",
"react-router": "^4.3.1",
"react-router-dom": "^4.3.1",
"react-scripts": "2.0.0-next.3e165448",
"react-tooltip": "^3.6.1",
"reactstrap": "^6.1.0",
"redux": "^4.0.0",
"redux-logger": "^3.0.6",
"redux-thunk": "^2.3.0",
"run-all": "^1.0.1",
"superagent": "^4.0.0-beta.5",
"tinymce-react": "^1.3.2",
"browserslist": [
">0.25%",
"not op_mini all",
"ie 11"
]
},
"scripts": {
"build-css": "node-sass-chokidar src/ -o src/",
"watch-css": "npm run build-css && node-sass-chokidar src/ -o src/ --watch --recursive",
"start-js": "react-scripts start",
"start": "npm-run-all -p watch-css start-js",
"build-js": "react-scripts build",
"build": "npm-run-all build-css build-js",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject"
},
"browserslist": {
"development": [
"last 2 chrome versions",
"last 2 firefox versions",
"last 2 edge versions"
],
"production": [
">0.25%",
"not op_mini all",
"ie 11"
]
}
}