-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 829 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 829 Bytes
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
{
"name": "mindshape_seo",
"version": "4.0",
"private": true,
"engines": {
"node": "^24.0"
},
"devDependencies": {
"@babel/core": "^7.29",
"@babel/preset-env": "^7.29",
"@babel/register": "^7.28",
"cross-env": "^10.1",
"css-loader": "^7.1",
"mini-css-extract-plugin": "^2.10",
"sass": "^1.98",
"sass-loader": "^16.0",
"webpack": "^5.105",
"webpack-cli": "^7.0",
"webpack-remove-empty-scripts": "^1.1"
},
"babel": {
"presets": [
"@babel/preset-env"
]
},
"browserslist": [
"defaults"
],
"scripts": {
"build:production": "cross-env NODE_ENV=production webpack --config ./Build/webpack.config.babel.js --progress",
"build:development": "cross-env NODE_ENV=development webpack --config ./Build/webpack.config.babel.js --progress"
}
}