-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
106 lines (106 loc) · 3.24 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
101
102
103
104
105
106
{
"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": ">=18"
},
"scripts": {
"start": "node dist/index.js",
"lint": "eslint --ext .jsx,.js src",
"lint:dev": "eslint --fix --ext .jsx,.js src",
"watch:react": "webpack watch --hot --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": {
"@date-io/moment": "^2.13.1",
"@emotion/react": "^11.8.2",
"@emotion/styled": "^11.8.1",
"@mui/icons-material": "^5.5.0",
"@mui/material": "^5.5.0",
"@mui/x-date-pickers": "^5.0.0-beta.3",
"@natlibfi/melinda-backend-commons": "^2.0.5",
"@tinymce/tinymce-react": "^4.3.0",
"body-parser": "^1.20.2",
"express": "^4.17.2",
"express-http-proxy": "^1.6.3",
"final-form": "^4.20.7",
"final-form-arrays": "^3.0.2",
"helmet": "^7.0.0",
"http-status": "^1.5.0",
"lodash": "^4.17.21",
"moment": "^2.29.1",
"oidc-client-ts": "^2.2.4",
"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.3",
"react-intl": "^5.24.6",
"react-oidc-context": "^2.2.2",
"react-router-dom": "^5.3.4",
"react-select": "^5.2.2",
"tinymce": "^6.4.0",
"uuid": "^8.3.2"
},
"devDependencies": {
"@babel/cli": "^7.16.8",
"@babel/core": "^7.16.12",
"@babel/eslint-parser": "^7.18.9",
"@babel/plugin-transform-react-jsx": "^7.18.10",
"@babel/preset-env": "^7.18.10",
"@babel/preset-react": "^7.18.6",
"babel-loader": "^8.2.3",
"css-loader": "^6.5.1",
"dotenv": "^16.0.3",
"eslint": "^8.8.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.30.1",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.5.0",
"nodemon": "^3.0.1",
"prettier": "^2.7.1",
"raw-loader": "^4.0.2",
"style-loader": "^3.3.1",
"webpack": "^5.65.0",
"webpack-cli": "^4.9.1",
"webpack-dev-server": "^4.6.0",
"webpack-merge": "^5.8.0",
"webpack-node-externals": "^3.0.0"
},
"babel": {
"plugins": [
"@babel/plugin-transform-react-jsx"
],
"presets": [
[
"@babel/preset-env",
{
"targets": "maintained node versions"
}
]
]
}
}