Newer
Older
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
{
"name": "openbis-ng-ui",
"version": "1.0.0",
"description": "React-based UI proto for openBIS",
"author": "Antti Luomi",
"license": "Apache-2.0",
"dependencies": {
"@material-ui/core": "3.0.2",
"@material-ui/icons": "3.0.1",
"install": "^0.12.2",
"npm": "^6.4.1",
"prop-types": "^15.6.2",
"react": "16.4.2",
"react-dnd": "5.0.0",
"react-dnd-html5-backend": "5.0.1",
"react-dom": "16.4.2",
"react-redux": "5.0.7",
"redux": "4.0.0",
"redux-saga": "0.16.0",
"typeface-roboto": "0.0.54"
},
"devDependencies": {
"babel-core": "6.26.0",
"babel-loader": "7.1.4",
"babel-preset-env": "1.7.0",
"babel-preset-react": "6.24.1",
"html-webpack-plugin": "3.2.0",
"source-map-loader": "0.2.3",
"webpack": "4.6.0",
"webpack-dev-server": "3.1.3",
"webpack-cli": "2.0.14",
"style-loader": "0.21.0",
"css-loader": "1.0.0",
"url-loader": "1.1.1",
"raw-loader": "0.5.1",
"file-loader": "1.1.11",
"jest": "23.1.0",
"eslint": "4.19.1",
"react-loader": "2.4.5",
"react-hot-loader": "4.3.6",
"eslint-config-standard": "11.0.0",
"eslint-plugin-standard": "3.1.0",
"eslint-plugin-react": "7.11.1",
"eslint-plugin-import": "2.13.0",
"eslint-plugin-node": "6.0.1",
"eslint-plugin-promise": "3.8.0",
"eslint-plugin-jest": "21.17.0",
"babel-eslint": "8.2.5"
},
"scripts": {
"dev": "webpack-dev-server --hot --inline --watch --host 0.0.0.0 --port 9124 --config webpack.config.dev.js",
"build": "webpack-cli --config webpack.config.js",
"unit": "jest",
"lint": "eslint --ext .js,.jsx src test",
"lint:fix": "eslint --ext .js,.jsx src test --fix",
"test": "npm run lint && npm run unit"
}
}