-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
110 lines (110 loc) · 3.44 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
{
"name": "iop-build-tools",
"version": "0.17.2",
"description": "Bundling our webpack build-chain into Docker",
"bugs": "https://github.com/ideasonpurpose/docker-build/issues",
"repository": "ideasonpurpose/docker-build",
"license": "ISC",
"author": "Ideas On Purpose (https://www.ideasonpurpose.com/)",
"contributors": [
"Joe Maller <[email protected]>"
],
"type": "module",
"main": "index.js",
"scripts": {
"analyze": "WEBPACK_BUNDLE_ANALYZER=true webpack",
"postanalyze": "node explore.js",
"browsersync": "node browsersync.js",
"prebuild": "node clean.js",
"build": "NODE_ENV=production webpack --color --stats-errors",
"postbuild": "npm run zip",
"build:debug": "node --inspect-brk=0.0.0.0 node_modules/.bin/webpack",
"postbuild:debug": "npm run zip:debug",
"devserver": "npm run start",
"env": "env",
"explore": "source-map-explorer",
"preview": "node browsersync.js",
"start": "webpack serve",
"start:debug": "node --inspect=0.0.0.0 node_modules/.bin/webpack serve",
"test": "NODE_OPTIONS=--experimental-vm-modules npx jest",
"test:watch": "NODE_OPTIONS=--experimental-vm-modules npx jest --watch",
"version": "version-everything && auto-changelog && git add -u",
"watch": "webpack --progress --profile --watch --color --display-error-details",
"webpack": "node --trace-deprecation node_modules/webpack/bin/webpack.js",
"webpack:profile": "webpack --profile --progress --json > /usr/src/site/webpack/stats.json",
"zip": "node zip.js",
"zip:debug": "node --inspect-brk=0.0.0.0 zip.js"
},
"jest": {
"clearMocks": true,
"collectCoverage": true,
"moduleNameMapper": {
"#(.*)": "<rootDir>/node_modules/$1"
},
"testTimeout": 500,
"transform": {},
"verbose": true
},
"dependencies": {
"@babel/preset-react": "^7.24.7",
"@svgr/webpack": "^8.1.0",
"@wordpress/dependency-extraction-webpack-plugin": "^6.2.0",
"ansi-html": "^0.0.9",
"archiver": "^7.0.1",
"auto-changelog": "^2.4.0",
"autoprefixer": "^10.4.19",
"babel-loader": "^9.1.3",
"body-parser": "^1.20.2",
"caniuse-lite": "^1.0.30001638",
"chalk": "^5.3.0",
"cli-truncate": "^4.0.0",
"copy-webpack-plugin": "^12.0.2",
"cosmiconfig": "^9.0.0",
"css-loader": "^7.1.2",
"cssnano": "^7.0.3",
"del": "^7.1.0",
"dotenv": "^16.4.5",
"esbuild-loader": "^4.2.0",
"filesize": "^10.1.2",
"fs-extra": "^11.2.0",
"globby": "^14.0.1",
"http-proxy": "^1.18.1",
"image-minimizer-webpack-plugin": "^4.0.2",
"is-text-path": "^3.0.0",
"lodash": "^4.17.21",
"mini-css-extract-plugin": "^2.9.0",
"node-sass": "^9.0.0",
"postcss": "^8.4.38",
"postcss-loader": "^8.1.1",
"pretty-hrtime": "^1.0.3",
"replacestream": "^4.0.3",
"sass": "^1.77.5",
"sass-loader": "^14.2.1",
"sharp": "^0.33.4",
"source-map-explorer": "^2.5.3",
"string-length": "^6.0.0",
"style-loader": "^4.0.0",
"svgo": "^3.3.2",
"svgo-loader": "^4.0.0",
"version-everything": "^0.11.3",
"webpack": "^5.91.0",
"webpack-bundle-analyzer": "^4.10.2",
"webpack-cli": "^5.1.4",
"webpack-dev-middleware": "^7.2.1",
"webpack-dev-server": "^4.15.1"
},
"devDependencies": {
"eslint": "^9.5.0",
"jest": "^29.7.0"
},
"auto-changelog": {
"package": true,
"commitLimit": 7
},
"version-everything": {
"files": [
"README.md",
"Dockerfile"
]
}
}