-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.26 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
{
"name": "trades-manager",
"version": "0.1.0",
"private": true,
"dependencies": {
"axios": "^0.17.1",
"bootstrap": "^4.0.0-beta.2",
"classnames": "^2.2.5",
"moment": "^2.19.3",
"ramda": "^0.25.0",
"react": "^16.2.0",
"react-datepicker": "^0.61.0",
"react-dom": "^16.2.0",
"react-flexbox-grid": "^2.0.0",
"react-number-format": "^3.0.3",
"react-redux": "^5.0.6",
"react-select": "^1.1.0",
"react-test-renderer": "^16.2.0",
"react-transition-group": "^1.1.2",
"reactstrap": "^4.8.0",
"redux": "^3.7.2",
"redux-axios-middleware": "^4.0.0",
"redux-logger": "^3.0.6"
},
"devDependencies": {
"dotenv": "^4.0.0",
"enzyme": "^3.2.0",
"enzyme-adapter-react-16": "^1.1.0",
"node-sass-chokidar": "^0.0.3",
"npm-run-all": "^4.1.2",
"react-scripts": "^1.0.17"
},
"scripts": {
"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",
"build-css": "node-sass-chokidar src/ -o src/",
"watch-css":
"npm run build-css && node-sass-chokidar src/ -o src/ --watch --recursive"
}
}