-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
124 lines (124 loc) · 3.2 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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
{
"name": "micro-meta-app-omero",
"version": "1.7.25-b1",
"private": true,
"main": "./main.js",
"publishConfig": {
"access": "restricted"
},
"dependencies": {
"micro-meta-app-react": "github:WU-BIMAC/MicroMetaApp-React#master",
"react": ">=17.0.2",
"react-bootstrap": "1.4.0",
"react-dom": ">=17.0.2"
},
"scripts": {
"test": "node scripts/test.js",
"buildProd": "gulp build-prod",
"buildDev": "gulp build-dev",
"dev": "gulp dev",
"build": "gulp build-prod && gulp build-dev",
"update-mma": "npm uninstall micro-meta-app-react && npm cache clean --force && npm install micro-meta-app-react@github:WU-BIMAC/MicroMetaApp-React#master --save"
},
"build": {},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"devDependencies": {
"@babel/cli": "^7.17.0",
"@babel/core": "^7.17.2",
"@babel/eslint-parser": "7.17.0",
"@babel/plugin-proposal-class-properties": "^7.16.7",
"@babel/plugin-proposal-object-rest-spread": "^7.16.7",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-syntax-flow": "^7.16.7",
"@babel/preset-env": "^7.16.11",
"@babel/preset-react": "^7.16.7",
"@babel/register": "^7.17.0",
"@swc/core": "^1.2.140",
"@swc/wasm": "^1.2.140",
"babel-loader": "^8.2.3",
"bufferutil": "^4.0.6",
"case-sensitive-paths-webpack-plugin": "^2.3.0",
"css-loader": "^6.6.0",
"eslint": "^8.9.0",
"eslint-plugin-flowtype": "^8.0.3",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.28.0",
"eslint-webpack-plugin": "^3.1.1",
"fancy-log": "^2.0.0",
"fs": "0.0.1-security",
"gulp": "^4.0.2",
"jest": "^28.1.3",
"jest-pnp-resolver": "^1.2.2",
"jest-resolve": "^28.1.3",
"jest-watch-typeahead": "^1.0.0",
"less": "^4.1.2",
"less-loader": "^10.2.0",
"plugin-error": "^1.0.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"source-map-support": "^0.5.19",
"string-replace-loader": "^3.1.0",
"style-loader": "^3.3.1",
"terser-webpack-plugin": "^5.3.5",
"ts-node": "^10.5.0",
"utf-8-validate": "^5.0.8",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0"
},
"babel": {
"presets": [
"@babel/env",
"@babel/react"
]
},
"jest": {
"collectCoverageFrom": [
"src/**/*.{js,jsx,ts,tsx}",
"!src/**/*.d.ts"
],
"resolver": "jest-pnp-resolver",
"setupFiles": [
"react-app-polyfill/jsdom"
],
"testMatch": [
"<rootDir>/src/**/__tests__/**/*.{js,jsx,ts,tsx}",
"<rootDir>/src/**/?(*.)(spec|test).{js,jsx,ts,tsx}"
],
"testEnvironment": "jsdom",
"testURL": "http://localhost",
"transform": {
"^.+\\.(js|jsx|ts|tsx)$": "<rootDir>/node_modules/babel-jest",
"^.+\\.css$": "<rootDir>/config/jest/cssTransform.js",
"^(?!.*\\.(js|jsx|ts|tsx|css|json)$)": "<rootDir>/config/jest/fileTransform.js"
},
"transformIgnorePatterns": [
"[/\\\\]node_modules[/\\\\].+\\.(js|jsx|ts|tsx)$",
"^.+\\.module\\.(css|sass|scss)$"
],
"moduleNameMapper": {
"^react-native$": "react-native-web",
"^.+\\.module\\.(css|sass|scss)$": "identity-obj-proxy"
},
"moduleFileExtensions": [
"web.js",
"js",
"web.ts",
"ts",
"web.tsx",
"tsx",
"json",
"web.jsx",
"jsx",
"node"
]
}
}