-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.3 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 2.3 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
{
"name": "matag-admin",
"version": "1.0.0",
"description": "matag admin ui",
"private": true,
"homepage": "/matag/admin/",
"scripts": {
"build-dev": "webpack --mode development",
"build-prod": "webpack --mode production",
"lint": "eslint src/main/js/ src/test/js/ --ext .js --ignore-pattern node_modules/",
"lint-fix": "eslint src/main/js/ src/test/js/ --ext .js --fix",
"postinstall": "yarn build-prod",
"test": "TZ=\"America/New_York\" LANG=\"en_US.UTF-8\" jest",
"watch": "webpack --mode development --watch",
"watch-htmlunit": "webpack --mode production --watch"
},
"author": "Antonio Alonzi",
"license": "AGPL-3.0-or-later",
"dependencies": {
"history": "^5.3.0",
"prop-types": "^15.8.1",
"react": "^19.2.1",
"react-dom": "^19.2.1",
"react-multi-select-component": "^4.3.4",
"react-redux": "^9.2.0",
"react-router-dom": "^7.11.0",
"redux": "^5.0.1",
"redux-devtools-extension": "^2.13.8"
},
"devDependencies": {
"@babel/core": "^7.28.5",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.18.6",
"@babel/plugin-proposal-optional-chaining": "^7.21.0",
"@babel/preset-env": "^7.28.5",
"@babel/preset-react": "^7.0.0",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.1",
"@testing-library/user-event": "^14.6.1",
"@types/jest": "^30.0.0",
"babel-loader": "^10.0.0",
"connected-react-router": "^6.8.0",
"css-loader": "^7.1.2",
"eslint": "^7.0.0",
"eslint-loader": "^4.0.2",
"eslint-plugin-react": "^7.20.0",
"jest": "^30.2.0",
"jest-environment-jsdom": "^30.2.0",
"jest-fetch-mock": "^3.0.3",
"jest-transform-css": "^6.0.3",
"sass": "^1.94.2",
"sass-loader": "^16.0.6",
"source-map-loader": "^5.0.0",
"style-loader": "^4.0.0",
"webpack": "^5.103.0",
"webpack-cli": "^6.0.1"
},
"jest": {
"roots": [
"<rootDir>/src/test/js"
],
"moduleNameMapper": {
".+\\.(css|styl|less|sass|scss)$": "jest-transform-css",
"^admin/(.*)$": "<rootDir>/src/main/js/admin/$1"
},
"automock": false,
"setupFilesAfterEnv": [
"<rootDir>/jest.setup.js"
],
"testEnvironment": "jsdom",
"testEnvironmentOptions": {
"url": "http://localhost/"
}
}
}