This repository has been archived by the owner on Mar 7, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
49 lines (49 loc) · 1.58 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
{
"name": "middleman-webpack",
"version": "1.0.0",
"description": "Middleman 4 + Webpack",
"repository": "https://github.com/tomrutgers/middleman-webpack-netlify-cms",
"author": "Tom Rutgers <[email protected]>",
"license": "MIT",
"browserslist": ">0.25%, not ie 11, not op_mini all, not dead",
"devDependencies": {
"@babel/core": "^7.13.10",
"@babel/preset-env": "^7.14.7",
"assets-webpack-plugin": "^5.1.2",
"babel-loader": "^8.2.2",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "5.1.2",
"css-loader": "^5.1.2",
"eslint": "^7.29.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.22.1",
"file-loader": "^6.2.0",
"mini-css-extract-plugin": "^1.6.2",
"node-sass": "^4.14.1",
"postcss": "^8.3.8",
"postcss-import": "^12.0.1",
"postcss-loader": "^4.0.3",
"postcss-preset-env": "^6.3.0",
"purgecss-webpack-plugin": "^4.0.3",
"sass-loader": "^10.1.1",
"style-loader": "^2.0.0",
"stylelint": "^13.12.0",
"stylelint-config-recommended-scss": "^4.1.0",
"stylelint-scss": "^3.19.0",
"terser-webpack-plugin": "^4.2.3",
"webpack": "^4.46.0",
"webpack-cli": "^3.3.12",
"webpack-merge": "^5.7.3"
},
"scripts": {
"start": "NODE_ENV=development ./node_modules/webpack/bin/webpack.js --watch -d --color",
"build": "NODE_ENV=production ./node_modules/webpack/bin/webpack.js --bail -p"
},
"dependencies": {
"core-js": "^3.18.1",
"netlify-cms-app": "^2.15.46",
"react": "^16.14.0",
"react-dom": "^16.14.0",
"tailwindcss": "^2.2.16"
}
}