-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
92 lines (92 loc) · 3.01 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
{
"name": "@folio/stripes-webpack",
"version": "5.3.0",
"description": "The webpack config for stripes",
"license": "Apache-2.0",
"publishConfig": {
"registry": "https://repository.folio.org/repository/npm-folio/"
},
"scripts": {
"test": "nyc --reporter=html --report-dir=artifacts/coverage --all mocha --opts ./test/mocha.opts './test/webpack/**/*.js'"
},
"engines": {
"node": ">=12.0.0"
},
"dependencies": {
"@babel/core": "^7.9.0",
"@babel/plugin-proposal-decorators": "^7.0.0",
"@babel/plugin-proposal-function-sent": "^7.0.0",
"@babel/plugin-proposal-throw-expressions": "^7.0.0",
"@babel/plugin-syntax-import-meta": "^7.0.0",
"@babel/plugin-transform-class-properties": "^7.0.0",
"@babel/plugin-transform-export-namespace-from": "^7.0.0",
"@babel/plugin-transform-numeric-separator": "^7.0.0",
"@babel/plugin-transform-private-methods": "^7.18.6",
"@babel/plugin-transform-private-property-in-object": "^7.21.0",
"@babel/preset-env": "^7.0.0",
"@babel/preset-flow": "^7.7.4",
"@babel/preset-react": "^7.9.0",
"@babel/preset-typescript": "^7.7.7",
"@babel/register": "^7.0.0",
"@cerner/duplicate-package-checker-webpack-plugin": "~2.1.0",
"@csstools/postcss-global-data": "^2.1.1",
"@csstools/postcss-relative-color-syntax": "^2.0.7",
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.4",
"@svgr/webpack": "^8.1.0",
"add-asset-html-webpack-plugin": "^6.0.0",
"autoprefixer": "^10.4.13",
"babel-loader": "^9.1.3",
"buffer": "^6.0.3",
"commander": "^2.9.0",
"connect-history-api-fallback": "^1.3.0",
"core-js": "^3.6.1",
"crypto-browserify": "^3.12.0",
"css-loader": "^6.4.0",
"csv-loader": "^3.0.3",
"debug": "^4.0.1",
"esbuild-loader": "~3.0.1",
"express": "^4.14.0",
"favicons": "7.1.4",
"favicons-webpack-plugin": "^6.0.0",
"handlebars": "^4.7.7",
"handlebars-loader": "^1.7.1",
"html-webpack-plugin": "^5.3.2",
"lodash": "^4.17.21",
"mini-css-extract-plugin": "^2.7.6",
"node-object-hash": "^1.2.0",
"postcss": "^8.4.2",
"postcss-custom-media": "^9.0.1",
"postcss-import": "^15.0.1",
"postcss-loader": "^7.2.4",
"process": "^0.11.10",
"react-refresh": "^0.11.0",
"regenerator-runtime": "^0.13.3",
"semver": "^7.1.3",
"serialize-javascript": "^5.0.0",
"source-map-loader": "^4.0.0",
"stream-browserify": "^3.0.0",
"style-loader": "^3.3.0",
"tapable": "^1.0.0",
"ts-loader": "^9.4.1",
"typescript": "^5.3.3",
"util-ex": "^0.3.15",
"webpack-dev-middleware": "^5.2.1",
"webpack-hot-middleware": "^2.25.1",
"webpack-remove-empty-scripts": "^1.0.1",
"webpack-virtual-modules": "^0.4.3"
},
"devDependencies": {
"chai": "^4.1.2",
"mocha": "^6.1.3",
"mocha-junit-reporter": "^1.17.0",
"nyc": "^17.1.0",
"sinon": "^7.3.2",
"sinon-chai": "^3.3.0",
"webpack": "^5.58.1"
},
"peerDependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0",
"webpack": "^5.58.1"
}
}