-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.58 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
{
"name": "minmax",
"version": "0.0.0",
"author": "Bohdan Levantovych",
"license": "ISC",
"description": "Function approximation using minman method and least squares method",
"main": "webpack.config.js",
"scripts": {
"build": "webpack --config ./webpack.config.js --mode production",
"dev": "webpack-dev-server --config ./webpack.config.js --mode development",
"test": "echo \"Error: no test specified\" && exit 1"
},
"dependencies": {
"lodash.chunk": "^4.2.0",
"lodash.range": "^3.2.0",
"material-ui": "^0.20.0",
"mobx": "^4.2.1",
"mobx-react": "^5.1.2",
"prop-types": "^15.6.1",
"re-base": "^1.3.1",
"react": "^16.3.2",
"react-dom": "^16.3.2",
"react-router-dom": "^4.2.2",
"react-swipeable-views": "^0.12.3",
"react-tap-event-plugin": "^3.0.2",
"styled-components": "^3.2.6"
},
"devDependencies": {
"@eleks/eslint-config-eleks": "^0.2.1",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-loader": "^7.1.4",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-react-html-attrs": "^2.1.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"css-loader": "^0.28.11",
"img-loader": "^2.0.0",
"json-loader": "^0.5.4",
"node-sass": "^4.9.0",
"sass-loader": "^6.0.7",
"style-loader": "^0.16.1",
"webpack": "^4.8.3",
"webpack-cli": "^2.1.3",
"webpack-dev-server": "^3.1.4"
}
}