-
Notifications
You must be signed in to change notification settings - Fork 189
Expand file tree
/
Copy pathpackage.json
More file actions
129 lines (128 loc) · 3.5 KB
/
package.json
File metadata and controls
129 lines (128 loc) · 3.5 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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
{
"name": "contentprocessor_web",
"version": "0.1.0",
"private": true,
"packageManager": "pnpm@10.28.2",
"dependencies": {
"@azure/msal-browser": "^5.6.2",
"@azure/msal-react": "^5.2.0",
"@fluentui/react-components": "^9.73.6",
"@fluentui/react-icons": "^2.0.245",
"@reduxjs/toolkit": "^2.11.2",
"babel-preset-react-app": "^10.1.0",
"contentprocessor_web": "file:",
"cra-template-typescript": "1.3.0",
"i18next": "^25.8.4",
"json-edit-react": "^1.29.0",
"node-forge": ">=1.4.0",
"nth-check": "3.0.1",
"postcss": "8.5.8",
"prismjs": "^1.30.0",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"react-dropzone": "^15.0.0",
"react-i18next": "^16.5.4",
"react-medium-image-zoom": "^5.4.1",
"react-redux": "^9.2.0",
"react-router-dom": "^7.13.2",
"react-scripts": "^5.0.1",
"react-toastify": "^11.0.5",
"react-virtualized": "^9.22.6",
"react-virtualized-auto-sizer": "^2.0.3",
"react-window": "^2.2.7"
},
"scripts": {
"start": "react-app-rewired start",
"build": "react-app-rewired build",
"test": "react-app-rewired test",
"predeploy": "pnpm build",
"deploy": "gh-pages -d build",
"eject": "react-scripts eject",
"build:deploy": "pnpm build && cp -r build/* /path/to/nginx/html"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/jest": "^30.0.0",
"@types/node": "^22.15.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@types/react-virtualized": "^9.22.3",
"@types/react-window": "^2.0.0",
"customize-cra": "^1.0.0",
"eslint": "^8.57.0",
"gh-pages": "^6.3.0",
"globals": "^17.4.0",
"husky": "^9.1.7",
"raw-loader": "^4.0.2",
"react-app-rewired": "^2.2.1",
"react-tiff": "^0.0.16",
"sass": "^1.98.0",
"sass-loader": "^16.0.7",
"typescript": "^5.8.3",
"typescript-eslint": "^8.58.0"
},
"compilerOptions": {
"typeRoots": [
"./node_modules/@types",
"./src/types"
]
},
"include": [
"src/**/*.ts",
"src/**/*.tsx",
"src/**/*.d.ts"
],
"jest": {
"moduleNameMapper": {
"^react-router-dom$": "react-router-dom/dist/index.js",
"^react-router$": "react-router/dist/development/index.js",
"^react-router/dom$": "react-router/dist/development/dom-export.js",
"^@fluentui/react-icons/lib/(.*)$": "@fluentui/react-icons/lib-cjs/$1"
}
},
"pnpm": {
"overrides": {
"postcss": "^8.5.6",
"nth-check": "^2.1.1",
"string_decoder": "^1.3.0",
"typescript": "^5.8.3",
"node-forge": "^1.4.0",
"@tootallnate/once": "^3.0.1",
"brace-expansion": "^2.0.3",
"flatted": "^3.4.2",
"immutable": "^5.1.5",
"lodash": "^4.17.24",
"path-to-regexp": "^0.1.13",
"picomatch": "^2.3.2",
"qs": "^6.14.2",
"rollup": "^2.80.0",
"serialize-javascript": "^7.0.5",
"underscore": "^1.13.8",
"webpack-dev-server": "^5.2.1",
"yaml": "^2.0.0",
"svgo": "^2.8.1",
"jsonpath": "^1.3.0",
"follow-redirects": "^1.16.0"
},
"onlyBuiltDependencies": [
"@parcel/watcher",
"core-js",
"core-js-pure"
]
}
}