-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
100 lines (100 loc) · 3.17 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
{
"name": "@connexta/kanri",
"author": "connexta",
"description": "An administration UI for DDF",
"version": "0.0.14",
"license": "LGPL-3.0",
"keywords": [],
"repository": {
"type": "git",
"url": "https://github.com/connexta/kanri.git"
},
"private": true,
"engines": {
"node": ">=0.10.5"
},
"devDependencies": {
"@material-ui/core": "4.9.12",
"@material-ui/icons": "4.9.1",
"@material-ui/lab": "4.0.0-alpha.51",
"@material-ui/pickers": "3.2.10",
"@types/dropzone": "5.0.6",
"@types/iframe-resizer": "3.5.7",
"@types/lodash.debounce": "4.0.6",
"@types/lodash.throttle": "4.1.6",
"@types/react": "16.9.34",
"@types/react-dom": "16.9.7",
"@types/react-router-dom": "5.1.5",
"@types/react-select": "3.0.12",
"@types/socket.io": "2.1.3",
"@types/socket.io-client": "1.4.32",
"@types/styled-components": "4.0.3",
"@connexta/ace": "git://github.com/andrewkfiedler/ace.git#b9e2d582cee8b1e60be015785ec7ec01d4f12b68",
"@connexta/eslint-config-connexta": "git://github.com/connexta/eslint-config-connexta.git#3f0caece6210d25c16863d472026fbfa069521a6",
"chokidar": "3.0.2",
"cpx": "1.5.0",
"express": "4.17.1",
"json": "9.0.6",
"lodash.debounce": "4.0.8",
"notistack": "0.9.11",
"querystring": "0.2.0",
"react": "16.13.1",
"react-dom": "16.13.1",
"react-select": "3.1.0",
"react-router-dom": "5.1.2",
"react-redux": "6.0.0",
"redux": "4.0.1",
"redux-thunk": "2.3.0",
"rimraf": "3.0.0",
"socket.io": "2.3.0",
"socket.io-client": "2.3.0",
"styled-components": "5.1.0",
"ts-node": "8.3.0",
"url": "0.11.0"
},
"peerDependencies": {
"@material-ui/core": ">=4",
"@material-ui/icons": ">=4",
"@material-ui/lab": "4.0.0-alpha.51",
"@material-ui/pickers": ">=3",
"notistack": ">=0",
"react": ">=16",
"react-dom": ">=16",
"react-select": ">=3",
"react-router-dom": ">=5",
"styled-components": ">=5"
},
"dependencies": {
"dropzone": "5.5.1",
"formik": "1.5.8",
"fuse.js": "3.4.5",
"iframe-resizer": "4.1.1",
"lodash.throttle": "4.1.1",
"@connexta/logviewer": "git://github.com/connexta/logviewer.git#81784420e24eb19d7584e5ee9a73789518d3e6aa",
"prop-types": "15.7.2",
"scroll-into-view-if-needed": "2.2.20",
"yup": "0.27.0"
},
"scripts": {
"copy:package": "cpx package.json dist && json -I -f dist/package.json -e 'this.private=false' && cpx \"src/**/!(*.tsx)\" \"dist/src\" && cpx \"dev/**/!(*.tsx)\" \"dist/dev\"",
"start": "ace start",
"start:capture": "ace start --env capture & yarn capture:mocks",
"start:mocks": "ace start --env mocks",
"prebuild": "rimraf dist && yarn copy:package",
"build": "tsc",
"build:mocks": "ace bundle --env mocks",
"publish:npm": "yarn build && npm publish dist",
"m2": "yarn install:m2",
"capture:mocks": "ts-node -P ./tsconfig.json ./dev/capture-mocks.tsx",
"watch": "ts-node -P ./tsconfig.json ./dev/watch.tsx"
},
"ace": {
"files": [
"src/main/webapp",
"target/webapp",
"src/main/resources"
]
},
"main": "src/main/webapp/components/entry/default-entry.tsx",
"context-path": "/"
}