-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
138 lines (138 loc) · 5.5 KB
/
Copy pathpackage.json
File metadata and controls
138 lines (138 loc) · 5.5 KB
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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
{
"name": "lpapps",
"version": "1.0.0",
"main": "index.js",
"author": "Altynbek Orumbayev",
"license": "MIT",
"scripts": {
"eslint": "eslint --cache --cache-location ./eslint/.eslintcache --no-color --ext .jsx src/",
"startLocalDev": "cross-env NODE_ENV=development BASE_SERVER_PORT=9001 BASE_BACKEND_URL=http://localhost:9005/api/ SOCKET_RECONNECT=false webpack-dev-server",
"startLocalDevSockets": "cross-env NODE_ENV=development BASE_SERVER_PORT=9001 BASE_BACKEND_URL=http://localhost:9005/api/ BASE_SOCKET_URL=http://localhost:9092 SOCKET_RECONNECT=true webpack-dev-server",
"startLocalProdSockets": "cross-env NODE_ENV=production BASE_SERVER_PORT=9001 BASE_BACKEND_URL=http://localhost:9005/api/ BASE_SOCKET_URL=http://localhost:9092 SOCKET_RECONNECT=true webpack-dev-server",
"startDockerDev": "cross-env NODE_ENV=development BASE_SERVER_PORT=9001 SOCKET_RECONNECT=true webpack-dev-server",
"build": "NODE_OPTIONS=--max_old_space_size=8000 cross-env NODE_ENV=production SOCKET_RECONNECT=true webpack",
"buildWithPreview": "NODE_OPTIONS=--max_old_space_size=8000 cross-env NODE_ENV=production BUNDLE_ANALYZER_ENABLED=true SOCKET_RECONNECT=true webpack",
"docz:dev": "docz dev",
"docz:build": "CI=false NODE_OPTIONS=--max_old_space_size=8000 docz build"
},
"precommit": [
"NODE_ENV=development lint-staged",
"NODE_ENV=production lint-staged"
],
"lint-staged": {
"*.{js,jsx}": [
"pretty-quick --staged",
"eslint src/ --fix",
"git add"
]
},
"flow:status": "flow status --quiet",
"dependencies": {
"@babel/core": "7.7.7",
"@babel/runtime": "7.7.7",
"@comunica/actor-init-sparql-rdfjs": "^1.7.2",
"@mapbox/geo-viewport": "^0.4.0",
"@material-ui/core": "4.8.2",
"@material-ui/icons": "4.5.1",
"@sentry/browser": "5.10.2",
"@turf/bbox": "^6.0.1",
"@turf/helpers": "^6.1.4",
"activitystrea.ms": "^2.1.3",
"axios": "0.19.0",
"classnames": "2.2.6",
"fast-deep-equal": "^2.0.1",
"filepond": "^4.4.9",
"filepond-plugin-file-validate-type": "^1.2.4",
"google-palette": "1.1.0",
"immutability-helper": "^3.0.0",
"json-form-data": "^1.4.1",
"jsonld": "^1.6.2",
"ldflex": "^2.2.1",
"moment": "^2.24.0",
"n3": "^1.1.1",
"normalize.css": "8.0.1",
"pigeon-cluster": "^0.0.6",
"pigeon-maps": "^0.14.0",
"pigeon-marker": "^0.3.4",
"prop-types": "15.7.2",
"q": "^1.5.1",
"query-string": "6.9.0",
"rambda": "^3.0.0",
"rdflib": "git+https://github.com/aorumbayev/rdflib.js.git",
"react": "16.12.0",
"react-chord-diagram": "1.5.0",
"react-copy-to-clipboard": "5.0.2",
"react-dom": "16.12.0",
"react-emoji-render": "1.2.1",
"react-error-boundary": "1.2.5",
"react-filepond": "^7.0.1",
"react-ga": "^2.5.7",
"react-google-charts": "3.0.15",
"react-loading-overlay": "^1.0.1",
"react-particles-js": "^2.6.0",
"react-redux": "7.1.3",
"react-router-dom": "4.3.1",
"react-swipeable-views": "^0.13.3",
"react-toastify": "5.5.0",
"redux": "4.0.5",
"redux-logger": "3.0.6",
"redux-thunk": "2.3.0",
"socket.io-client": "2.3.0",
"solid-auth-client": "2.4.1",
"streamify-array": "^1.0.1",
"string-hash": "1.1.3",
"styled-components": "4.4.1",
"uuid": "3.3.3"
},
"devDependencies": {
"@babel/cli": "7.7.7",
"@babel/plugin-proposal-class-properties": "7.7.4",
"@babel/plugin-proposal-object-rest-spread": "7.7.7",
"@babel/plugin-syntax-dynamic-import": "7.7.4",
"@babel/plugin-transform-runtime": "7.7.6",
"@babel/preset-env": "7.7.7",
"@babel/preset-flow": "7.7.4",
"@babel/preset-react": "7.7.4",
"@mdx-js/loader": "1.5.3",
"@sentry/webpack-plugin": "1.9.3",
"babel-cli": "6.26.0",
"babel-eslint": "10.0.3",
"babel-loader": "8.0.6",
"babel-plugin-module-resolver": "3.2.0",
"babel-plugin-smart-webpack-import": "1.5.2",
"babel-preset-flow": "6.23.0",
"cross-env": "5.2.1",
"css-loader": "3.4.1",
"docz": "2.2.0",
"docz-plugin-css": "0.11.0",
"docz-theme-default": "1.2.0",
"eslint": "6.8.0",
"eslint-config-airbnb": "17.1.1",
"eslint-config-prettier": "6.9.0",
"eslint-import-resolver-babel-module": "5.1.0",
"eslint-import-resolver-webpack": "0.12.0",
"eslint-plugin-babel": "5.3.0",
"eslint-plugin-flowtype": "4.5.3",
"eslint-plugin-import": "2.19.1",
"eslint-plugin-jsx-a11y": "6.2.3",
"eslint-plugin-material-ui": "1.0.1",
"eslint-plugin-prettier": "3.1.2",
"eslint-plugin-react": "7.17.0",
"file-loader": "4.3.0",
"flow-bin": "0.115.0",
"html-loader": "0.5.5",
"html-webpack-plugin": "3.2.0",
"lint-staged": "9.5.0",
"node-sass": "4.13.0",
"prettier": "1.19.1",
"pretty-quick": "1.11.1",
"react-hot-loader": "4.12.18",
"sass-loader": "7.3.1",
"style-loader": "1.1.2",
"webpack": "4.41.5",
"webpack-bundle-analyzer": "3.6.0",
"webpack-cli": "3.3.10",
"webpack-conditional-loader": "1.0.12",
"webpack-dev-server": "3.10.1"
}
}