-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
119 lines (119 loc) · 3.72 KB
/
package.json
File metadata and controls
119 lines (119 loc) · 3.72 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
{
"name": "@connexta/kanri",
"author": "connexta",
"description": "An administration UI for DDF",
"version": "0.0.22",
"license": "LGPL-3.0",
"keywords": [],
"repository": {
"type": "git",
"url": "https://github.com/connexta/kanri.git"
},
"private": true,
"engines": {
"node": "20.x.x"
},
"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/lodash": "4.17.16",
"@types/react": "16.9.34",
"@types/react-dom": "16.9.7",
"@types/redux-immutable": "3.0.43",
"@types/react-redux": "5.0.28",
"@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",
"@types/traverse": "0.6.37",
"@types/validator": "13.12.2",
"@connexta/ace": "git+https://github.com/connexta/ace.git#37a0052298d788aff5836551a4d578a758ea3575",
"@connexta/eslint-config-connexta": "git+https://github.com/connexta/eslint-config-connexta.git#3f0caece6210d25c16863d472026fbfa069521a6",
"chokidar": "3.0.2",
"cpy": "11.1.0",
"cpy-cli": "5.0.0",
"express": "4.17.1",
"json": "11.0.0",
"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",
"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",
"typescript": "5.8.2",
"type-fest": "4.37.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",
"postcss-focus-visible": ">=8",
"react": ">=16",
"react-dom": ">=16",
"react-select": ">=3",
"react-router-dom": ">=5",
"styled-components": ">=5",
"tailwindcss": ">=3"
},
"dependencies": {
"ace-builds": "1.39.0",
"autoprefixer": "10.4.20",
"dropzone": "5.5.1",
"formik": "2.3.3",
"fuse.js": "3.4.5",
"golden-layout": "1.5.9",
"immutable": "3.8.2",
"lodash": "4.17.21",
"moment": "2.29.4",
"ohash": "2.0.11",
"postcss-focus-visible": "8.0.2",
"prop-types": "15.7.2",
"react-ace": "14.0.1",
"react-redux": "5.1.1",
"react-visibility-sensor": "5.0.2",
"redux": "3.7.2",
"redux-immutable": "3.1.0",
"redux-thunk": "2.4.2",
"scroll-into-view-if-needed": "2.2.20",
"tailwindcss": "3.4.17",
"traverse": "0.6.11",
"validator": "13.12.0",
"yup": "1.4.0"
},
"scripts": {
"start": "ace start",
"start:capture": "ace start --env capture & yarn capture:mocks",
"start:mocks": "ace start --env mocks",
"build": "yarn publish:build",
"build:mocks": "ace bundle --env mocks",
"publish:cpx-package": "cpy package.json dist && json -I -f dist/package.json -e 'this.private=false'",
"publish:cpx-src": "cpy \"src/**/*\" \"!src/**/*.tsx\" \"!src/**/*.ts\" dist/src",
"publish:cpx-current": "cpy \"./*\" dist --verbose",
"publish:build": "rimraf dist && yarn publish:cpx-src && yarn publish:cpx-current && tsc && yarn publish:cpx-package",
"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": "/"
}