-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
98 lines (98 loc) · 3.06 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
{
"name": "@natlibfi/identifier-services-ui-public",
"description": "Identifier Services Public UI",
"author": {
"name": "The National Library of Finland"
},
"keywords": [],
"homepage": "https://github.com/NatLibFi/identifier-services-ui-public",
"bugs": {
"url": "https://github.com/natlibfi/identifier-services-ui-public/issues"
},
"browser": {
"child_process": false
},
"license": "GPL-3.0-only",
"private": true,
"version": "1.0.0",
"engines": {
"node": ">=18"
},
"scripts": {
"start": "node dist/index.js",
"start:cypress-server": "DOTENV_CONFIG_PATH=.env.cypress node -r dotenv/config 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": "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",
"cypress:open": "cypress open",
"cypress:run": "cypress run"
},
"dependencies": {
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@mui/icons-material": "^5.14.7",
"@mui/material": "^5.14.7",
"@natlibfi/melinda-backend-commons": "^2.2.1",
"express": "^4.18.2",
"express-http-proxy": "^2.0.0",
"final-form": "^4.20.10",
"final-form-arrays": "^3.1.0",
"helmet": "^7.0.0",
"http-status": "^1.7.0",
"prop-types": "^15.8.1",
"query-string": "^9.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-final-form": "^6.5.9",
"react-final-form-arrays": "^3.1.4",
"react-intl": "^6.4.4",
"react-router-dom": "^5.3.4",
"react-select": "^5.7.4",
"uuid": "^9.0.0"
},
"devDependencies": {
"@babel/cli": "^7.22.15",
"@babel/core": "^7.22.15",
"@babel/eslint-parser": "^7.22.15",
"@babel/plugin-transform-react-jsx": "^7.22.15",
"@babel/preset-env": "^7.22.15",
"@babel/preset-react": "^7.22.15",
"babel-loader": "^9.1.3",
"css-loader": "^6.8.1",
"cypress": "^13.6.0",
"dotenv": "^16.3.1",
"eslint": "^8.48.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-cypress": "^2.15.1",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-react": "^7.33.2",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.5.3",
"nodemon": "^3.0.1",
"prettier": "^3.0.3",
"style-loader": "^3.3.3",
"webpack": "^5.88.2",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1",
"webpack-merge": "^5.9.0",
"webpack-node-externals": "^3.0.0"
},
"babel": {
"plugins": [
"@babel/plugin-transform-react-jsx"
],
"presets": [
[
"@babel/preset-env",
{
"targets": "maintained node versions"
}
]
]
}
}