forked from mxcube/mxcubeweb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
111 lines (111 loc) · 3.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
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"scripts": {
"start": "npm run dev",
"dev": "./node_modules/.bin/webpack-dev-server --hot --inline --colors --host 0.0.0.0 --port 8090 --display-error-details --content-base mxcube3/ui",
"build": "NODE_ENV=production ./node_modules/.bin/webpack -p --config webpack.production.config.js",
"esformatter": "./node_modules/.bin/esformatter",
"lint": "eslint . --ext .js --ext .jsx",
"postinstall": "npm install fabric --no-optional"
},
"name": "mxcube3",
"description": "The next version of MxCUBE",
"version": "0.1.0",
"repository": {
"type": "git",
"url": "https://github.com/mxcube/mxcube3"
},
"license": "MIT",
"main": "main.jsx",
"dependencies": {
"babel-polyfill": "^6.3.14",
"babel-runtime": "^6.3.19",
"bootstrap": "3.3.5",
"bootstrap-webpack": "0.0.5",
"classnames": "^2.2.0",
"css-loader": "0.23.1",
"font-awesome": "^4.4.0",
"font-awesome-webpack": "0.0.4",
"grunt": "0.4.5",
"history": "1.17.x",
"isomorphic-fetch": "^2.2.0",
"isotope-cells-by-row": "^1.1.3",
"isotope-layout": "2.2.2",
"jquery": "^2.2.1",
"lodash": "4.0.0",
"react": "0.14.2",
"react-bootstrap-switch": "^3.4.5",
"react-dnd": "^2.1.2",
"react-dnd-html5-backend": "^2.1.2",
"react-dom": "0.14.2",
"react-redux": "4.0.6",
"react-router": "1.0.3",
"react-sticky": "^5.0.3",
"redux": "^3.0.4",
"redux-form": "^3.1.7",
"redux-logger": "^2.0.4",
"redux-persist": "^3.0.3",
"redux-persist-crosstab": "^3.0.0",
"redux-thunk": "^2.0.0",
"shortid": "^2.2.6",
"socket.io-client": "1.4.5",
"style-loader": "0.12.3",
"underscore": "^1.8.3",
"x-editable": "1.5.1",
"everpolate": "0.0.3"
},
"devDependencies": {
"babel-core": "6.4.0",
"babel-eslint": "^6.0.4",
"babel-loader": "^6.2.1",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-polyfill": "^6.0.0",
"babel-preset-es2015": "^6.3.13",
"babel-preset-react": "^6.3.13",
"babel-preset-stage-0": "^6.3.13",
"css-loader": "0.22.0",
"esformatter": "^0.8.1",
"esformatter-jsx": "^4.0.6",
"eslint": "^2.8.0",
"eslint-config-airbnb": "^7.0.0",
"eslint-loader": "^1.2.1",
"eslint-plugin-jsx-a11y": "^0.6.2",
"eslint-plugin-react": "^4.3.0",
"exports-loader": "0.6.2",
"extract-text-webpack-plugin": "0.9.1",
"file-loader": "^0.8.4",
"http-server": "0.8.5",
"image-webpack-loader": "^1.8.0",
"img-loader": "1.2.0",
"imports-loader": "0.6.5",
"json5": "0.4.0",
"less": "2.5.3",
"less-loader": "^2.2.3",
"react-bootstrap": "^0.27.3",
"react-hot-loader": "^1.3.0",
"script-loader": "0.6.1",
"style-loader": "0.13.0",
"url-loader": "^0.5.6",
"webpack": "1.12.11",
"webpack-dev-server": "1.14.1"
},
"esformatter": {
"plugins": [
"esformatter-jsx"
],
"jsx": {
"formatJSX": true,
"attrsOnSameLineAsTag": false,
"maxAttrsOnTag": 3,
"firstAttributeOnSameLine": true,
"alignWithFirstAttribute": false,
"spaceInJSXExpressionContainers": " ",
"htmlOptions": {
"brace_style": "collapse",
"indent_char": " ",
"indent_size": 4,
"max_preserve_newlines": 2,
"preserve_newlines": true
}
}
}
}