-
Notifications
You must be signed in to change notification settings - Fork 71
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 2.95 KB
/
Copy pathpackage.json
File metadata and controls
95 lines (95 loc) · 2.95 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
{
"name": "inspectit-ocelot-configuration-ui",
"description": "web-frontend for the inspectIT Ocelot's configuration server",
"homepage": "https://inspectit.rocks/",
"repository": {
"type": "git",
"url": "https://github.com/inspectIT/inspectit-ocelot"
},
"author": {
"name": "Novatec Consulting GmbH",
"email": "digital-experience@novatec-gmbh.de",
"url": "https://www.novatec-gmbh.de/"
},
"version": "0.1.0",
"scripts": {
"dev": "next ./src",
"build": "next build",
"start": "next start",
"export": "next build ./src && next export ./src -o ./out",
"lint": "next lint ./src",
"lint:fix": "next lint --fix ./src",
"format": "prettier --check \"./src/**/*.+(js|jsx|json|css|md)\"",
"format:write": "prettier --write \"./src/**/*.+(js|jsx|json|css|md)\"",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"dependencies": {
"ace-builds": "^1.42.0",
"axios": "^1.11.0",
"classnames": "^2.5.1",
"dateformat": "^5.0.3",
"eslint-config-next": "^15.4.4",
"file-saver": "^2.0.5",
"js-yaml": "^4.1.0",
"jszip": "^3.10.0",
"jwt-decode": "^3.1.2",
"lodash": "^4.17.21",
"next": "^15.4.5",
"primeflex": "^4.0.0",
"primeicons": "^7.0.0",
"primereact": "^10.9.6",
"prop-types": "^15.8.1",
"randexp": "^0.5.3",
"react": "^18.3.1",
"react-diff-viewer-continued": "^3.4.0",
"react-dom": "^18.3.1",
"react-dropzone": "^14.2.3",
"react-redux": "^9.2.0",
"react-syntax-highlighter": "^15.6.1",
"react-timeago": "^8.3.0",
"react-tooltip": "^5.29.1",
"react-transition-group": "^4.4.2",
"redux": "^4.2.1",
"redux-devtools-extension": "^2.13.2",
"redux-persist": "^6.0.0",
"redux-thunk": "^2.4.1",
"require-from-string": "2.0.2",
"reselect": "^5.1.1",
"strip-ansi": "^7.0.1",
"uuid": "^11.1.0",
"webpack": "^5.100.2"
},
"license": "Apache-2.0",
"devDependencies": {
"@babel/core": "^7.27.4",
"@babel/eslint-parser": "^7.27.5",
"@babel/helper-builder-react-jsx": "^7.27.1",
"@babel/helper-call-delegate": "^7.12.13",
"@babel/helper-define-map": "^7.18.6",
"@babel/helper-regex": "^7.10.5",
"@babel/helper-string-parser": "^7.27.1",
"@babel/preset-react": "^7.27.1",
"@next/eslint-plugin-next": "^15.3.2",
"@storybook/addon-actions": "^9.0.8",
"@storybook/addon-essentials": "^8.1.11",
"@storybook/addon-links": "^8.1.11",
"@storybook/react": "^7.6.19",
"babel-loader": "^10.0.0",
"eslint": "8.55.0",
"eslint-config-prettier": "^10.1.8",
"eslint-import-resolver-webpack": "^0.13.2",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-prettier": "^5.5.3",
"eslint-plugin-react": "^7.30.1",
"file-loader": "^6.2.0",
"prettier": "^3.5.3",
"url-loader": "^4.1.1"
},
"resolutions": {
"@babel/helpers": "^7.26.10",
"prismjs": "^1.30.0",
"lodash": "^4.17.21",
"esbuild": "^0.25.0"
}
}