-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
70 lines (70 loc) · 2.48 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
{
"name": "opensvc-cluster-manager",
"version": "7.1.13",
"description": "OpenSVC Cluster Management Frontend.",
"main": "index.js",
"config": {
"mode": "development"
},
"scripts": {
"cleanup": "rm -rf src/version.js dist",
"check-version": "git describe --always --tags | egrep \"${npm_package_version}(-.*)*$\" > version && cat version && exit 0 || echo invalid versions: package:$npm_package_version != git:$(git describe --always --tags) && exit 1",
"pkgversion": "echo \"export const version = \\\"$(cat version)\\\"\" >> src/version.js",
"commit": "echo \"export const commit = \\\"$(git log --max-count=1 --pretty=format:%H)\\\"\" >> src/version.js",
"dumpversion": "npm run cleanup && npm run check-version && npm run pkgversion && npm run commit",
"build": "npm run dumpversion && webpack --mode production",
"build:dev": "npm run dumpversion && webpack --mode development"
},
"keywords": [],
"author": "OpenSVC SAS",
"license": "ISC",
"dependencies": {
"@axa-fr/react-oidc-context": "^3.1.6",
"@babel/core": "^7.12.10",
"@babel/plugin-transform-async-to-generator": "^7.12.1",
"@babel/plugin-transform-class-properties": "^7.23.3",
"@babel/preset-env": "^7.12.10",
"@babel/preset-react": "^7.12.10",
"@babel/runtime": "^7.12.5",
"@babel/runtime-corejs3": "^7.12.5",
"@emotion/css": "^11.11.2",
"@emotion/react": "^11.11.3",
"@emotion/styled": "^11.11.0",
"@mui/icons-material": "^5.15.3",
"@mui/lab": "^5.0.0-alpha.159",
"@mui/material": "^5.15.3",
"autosuggest-highlight": "^3.1.1",
"babel-loader": "^9.1.3",
"buffer": "^6.0.3",
"css-loader": "^6.8.1",
"eventsource": "^2.0.2",
"html-loader": "^4.2.0",
"html-webpack-plugin": "^5.0.0",
"https-browserify": "^1.0.0",
"i18next": "^23.2.3",
"lodash": "^4.17.21",
"lodash.isequal": "^4.5.0",
"notistack": "^3.0.1",
"oidc-client": "^1.10.1",
"postcss-loader": "^7.3.4",
"process": "^0.11.10",
"prop-types": "^15.7.2",
"react": "^18.2.0",
"react-autosuggest": "^10.1.0",
"react-dom": "^18.2.0",
"react-i18next": "^14.0.0",
"react-router-dom": "^6.21.1",
"react-sparklines": "^1.7.0",
"sass-loader": "^13.3.3",
"stream-http": "^3.2.0",
"typeface-roboto": "^1.1.13",
"url": "^0.11.3",
"url-loader": "^4.1.1",
"util": "^0.12.5",
"webpack": "^5.20.0",
"webpack-cli": "^5.1.4"
},
"devDependencies": {
"@babel/plugin-transform-runtime": "^7.12.10"
}
}