-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
109 lines (109 loc) · 3.66 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
{
"name": "kafmesh-ui",
"author": "Apps team at Syncromatics",
"description": "Client-side implementation of Kafmesh",
"repository": {
"type": "git",
"url": "git+https://github.com/syncromatics/kafmesh-ui.git"
},
"version": "0.1.0",
"private": true,
"license": "MIT",
"dependencies": {
"@godaddy/terminus": "^4.4.1",
"@rehooks/component-size": "^1.0.3",
"apollo-boost": "^0.4.7",
"apollo-cache-inmemory": "^1.6.5",
"apollo-link-http": "^1.5.17",
"apollo-link-ws": "^1.0.20",
"awesome-typescript-loader": "^5.2.1",
"cytoscape": "^3.14.0",
"cytoscape-cose-bilkent": "^4.1.0",
"express-http-proxy": "^1.6.0",
"graphql": "^15.0.0",
"graphql-tools": "^5.0.0",
"http-proxy": "^1.18.0",
"prop-types": "^15.7.2",
"react": "^16.12.0",
"react-apollo": "^3.1.5",
"react-cytoscapejs": "^1.2.1",
"react-dom": "^16.12.0",
"react-is": "^16.12.0",
"react-router-dom": "^5.1.2",
"react-scripts": "^3.4.1",
"source-map-loader": "^0.2.4",
"styled-components": "^5.0.1",
"subscriptions-transport-ws": "^0.9.16",
"ts-loader": "^7.0.2",
"ts-node": "^8.10.1",
"typescript": "^3.8.3",
"use-debounce": "^3.4.2"
},
"scripts": {
"start:server": "nodemon --config \"./util/nodemon.json\"",
"start:app": "NODE_ENV=development webpack-dev-server --config webpack/webpack.app.config.js --mode development --open --hot",
"start": "run-p --race start:app start:server",
"build:app": "NODE_ENV=production webpack --config webpack/webpack.app.config.js --mode production",
"build:server": "NODE_ENV=production webpack --config webpack/webpack.server.config.js --mode production",
"build": "rm -rf dist && yarn build:app && yarn build:server",
"storybook": "start-storybook -p 6007"
},
"devDependencies": {
"@apollo/react-hooks": "^3.1.3",
"@babel/core": "^7.8.4",
"@babel/preset-env": "^7.8.4",
"@babel/preset-react": "^7.8.3",
"@storybook/addon-actions": "^5.3.13",
"@storybook/addon-links": "^5.3.13",
"@storybook/addons": "^5.3.13",
"@storybook/react": "^5.3.13",
"@types/express": "^4.17.6",
"@types/express-http-proxy": "^1.6.0",
"@types/http-proxy": "^1.17.4",
"@types/jest": "^25.2.1",
"@types/react": "^16.9.34",
"@types/react-dom": "^16.9.7",
"@types/react-router-dom": "^5.1.5",
"@types/styled-components": "^5.1.0",
"apollo-storybook-react": "^0.2.4",
"babel-core": "^6.26.3",
"babel-eslint": "^10.0.3",
"babel-loader": "^8.0.6",
"babel-plugin-styled-components": "^1.10.7",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-config-prettier": "^6.10.0",
"eslint-config-react-app": "^5.2.0",
"eslint-loader": "^3.0.3",
"eslint-plugin-compat": "^3.5.1",
"eslint-plugin-flowtype": "^4.6.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-react": "^7.18.3",
"eslint-plugin-react-hooks": "^2.3.0",
"html-webpack-plugin": "^3.2.0",
"nodemon": "^2.0.3",
"npm-run-all": "^4.1.5",
"prettier": "^1.19.1",
"run-p": "^0.0.0",
"stylelint": "^13.0.0",
"stylelint-a11y": "^1.2.2",
"stylelint-config-prettier": "^8.0.1",
"stylelint-config-recommended": "^3.0.0",
"stylelint-config-standard": "20.0.0",
"stylelint-config-styled-components": "^0.1.1",
"stylelint-custom-processor-loader": "^0.6.0",
"stylelint-high-performance-animation": "^1.4.0",
"stylelint-no-unsupported-browser-features": "^4.0.0",
"stylelint-prettier": "^1.1.2",
"stylelint-processor-styled-components": "^1.10.0",
"stylelint-webpack-plugin": "^1.2.3",
"url-loader": "^3.0.0",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.10.3"
}
}