-
Notifications
You must be signed in to change notification settings - Fork 184
Expand file tree
/
Copy pathpackage.json
More file actions
114 lines (114 loc) · 3.11 KB
/
package.json
File metadata and controls
114 lines (114 loc) · 3.11 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
{
"name": "contentprocessor_web",
"version": "0.1.0",
"private": true,
"packageManager": "pnpm@10.28.2",
"dependencies": {
"@azure/msal-browser": "^4.27.0",
"@azure/msal-react": "^3.0.23",
"@fluentui/react-button": "^9.8.0",
"@fluentui/react-components": "^9.72.9",
"@fluentui/react-dialog": "^9.16.6",
"@fluentui/react-icons": "^2.0.245",
"@reduxjs/toolkit": "^2.11.2",
"axios": "^1.13.5",
"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.3.3",
"nth-check": "2.1.1",
"postcss": "8.5.6",
"prismjs": "^1.30.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-dropzone": "^14.3.8",
"react-i18next": "^16.5.4",
"react-medium-image-zoom": "^5.4.0",
"react-redux": "^9.2.0",
"react-router-dom": "^7.12.0",
"react-scripts": "^5.0.1",
"react-toastify": "^11.0.5",
"react-virtualized": "^9.22.6",
"react-virtualized-auto-sizer": "^1.0.25",
"react-window": "^1.8.11"
},
"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": "^9.39.2",
"@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/react": "^18.3.18",
"@types/react-dom": "^18.3.5",
"@types/react-router-dom": "^5.3.3",
"@types/react-virtualized": "^9.22.3",
"@types/react-window": "^2.0.0",
"customize-cra": "^1.0.0",
"gh-pages": "^6.3.0",
"globals": "^17.0.0",
"husky": "^9.1.7",
"raw-loader": "^4.0.2",
"react-app-rewired": "^2.2.1",
"react-tiff": "^0.0.14",
"sass": "^1.97.2",
"sass-loader": "^16.0.6",
"typescript": "^4.9.5",
"typescript-eslint": "^8.52.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.1",
"nth-check": "^2.1.1",
"string_decoder": "^1.3.0",
"typescript": "^4.9.5",
"node-forge": "^1.3.2"
},
"onlyBuiltDependencies": [
"@parcel/watcher",
"core-js",
"core-js-pure"
]
}
}