-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
79 lines (79 loc) · 1.65 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
{
"name": "@silverstripe/webpack-config",
"version": "2.1.0",
"description": "SilverStripe config files for modules",
"engines": {
"node": ">=18.x"
},
"main": "index.js",
"repository": {
"type": "git",
"url": "git://github.com/silverstripe/webpack-config.git"
},
"keywords": [
"silverstripe",
"webpack",
"config",
"modules",
"react"
],
"author": "SilverStripe Ltd",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/silverstripe/webpack-config/issues"
},
"homepage": "https://github.com/silverstripe/webpack-config",
"dependencies": {
"@babel/core": "^7.19.6",
"@babel/preset-env": "^7.19.4",
"@babel/preset-react": "^7.18.6",
"@sect/modernizr-loader": "^1.0.3",
"autoprefixer": "^10.4.13",
"babel-loader": "^9.0.1",
"core-js": "^3.26.0",
"css-loader": "^6.7.1",
"expose-loader": "^4.0.0",
"ignore-emit-webpack-plugin": "^2.0.6",
"imports-loader": "^4.0.1",
"json-loader": "^0.5.7",
"lodash": "^4.17.21",
"mini-css-extract-plugin": "^2.6.1",
"modernizr": "^3.12.0",
"npm": "^8.19.2",
"postcss": "^8.4.18",
"postcss-custom-properties": "^12.1.10",
"postcss-load-config": "^4.0.1",
"postcss-loader": "^7.0.1",
"resolve-url-loader": "^5.0.0",
"sass": "^1.55.0",
"sass-loader": "^13.1.0",
"webpack": "^5.74.0",
"webpack-bundle-analyzer": "^4.7.0"
},
"jest": {
"roots": [
"client/src"
],
"moduleDirectories": [
"client/src",
"node_modules"
],
"testMatch": [
"**/tests/**/*-test.js?(x)"
],
"transform": {
".*": "babel-jest"
}
},
"babel": {
"presets": [
[
"@babel/preset-env",
{
"modules": false
}
],
"@babel/preset-react"
]
}
}