-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
103 lines (103 loc) · 3.14 KB
/
Copy pathpackage.json
File metadata and controls
103 lines (103 loc) · 3.14 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
{
"name": "@natlibfi/identifier-services-ui-admin",
"description": "Identifier Services Admin UI",
"author": {
"name": "The National Library of Finland"
},
"keywords": [],
"homepage": "https://github.com/natlibfi/identifier-services-ui-admin",
"bugs": {
"url": "https://github.com/natlibfi/identifier-services-ui-admin/issues"
},
"browser": {
"child_process": false
},
"repository": {
"type": "git",
"url": "git@github.com:natlibfi/identifier-services-ui-admin.git"
},
"license": "GPL-3.0-only",
"private": true,
"version": "1.1.0",
"engines": {
"node": ">=22"
},
"scripts": {
"start": "node dist/index.js",
"lint": "eslint --ext .jsx,.js src",
"lint:dev": "eslint --fix --ext .jsx,.js src",
"watch:react": "webpack watch --config=./webpack/webpack.config.dev.js --progress",
"watch:server": "nodemon -w src/server --exec 'npm run build:server && DOTENV_CONFIG_PATH=.env.dev node -r dotenv/config dist/index.js'",
"build": "INLINE_RUNTIME_CHUNK=false npm run build:server && npm run build:frontend",
"build:frontend": "NODE_ENV=production webpack --config ./webpack/webpack.config.prod.js --progress",
"build:server": "cd src/server && BABEL_ENV=production babel . --out-dir ../../dist"
},
"dependencies": {
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.0",
"@mui/icons-material": "^5.17.1",
"@mui/material": "^5.17.1",
"@mui/x-date-pickers": "^5.0.13",
"@natlibfi/melinda-backend-commons": "^3.0.1",
"@tinymce/tinymce-react": "^6.1.0",
"body-parser": "^2.2.1",
"express": "^4.22.0",
"express-http-proxy": "^2.1.1",
"final-form": "^4.20.10",
"final-form-arrays": "^3.1.0",
"helmet": "^8.1.0",
"http-status": "^2.1.0",
"lodash": "^4.17.21",
"moment": "^2.30.1",
"oidc-client-ts": "^3.2.0",
"prop-types": "^15.8.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-final-form": "^6.5.9",
"react-final-form-arrays": "^3.1.4",
"react-intl": "^7.1.11",
"react-oidc-context": "^3.3.0",
"react-router-dom": "^5.3.4",
"react-select": "^5.10.1",
"tinymce": "^7.8.0",
"uuid": "^11.1.0"
},
"devDependencies": {
"@babel/cli": "^7.27.0",
"@babel/core": "^7.26.10",
"@babel/eslint-parser": "^7.27.0",
"@babel/plugin-transform-react-jsx": "^7.25.9",
"@babel/preset-env": "^7.26.9",
"@babel/preset-react": "^7.26.3",
"babel-loader": "^10.0.0",
"css-loader": "^6.11.0",
"dotenv": "^16.5.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-prettier": "^5.2.6",
"eslint-plugin-react": "^7.37.5",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.6.3",
"nodemon": "^3.1.9",
"prettier": "^3.5.3",
"raw-loader": "^4.0.2",
"style-loader": "^4.0.0",
"webpack": "^5.99.6",
"webpack-cli": "^5.1.4",
"webpack-node-externals": "^3.0.0"
},
"babel": {
"plugins": [
"@babel/plugin-transform-react-jsx"
],
"presets": [
[
"@babel/preset-env",
{
"targets": "maintained node versions"
}
]
]
}
}