mirror of
https://github.com/tailwindlabs/tailwindcss.git
synced 2025-12-08 21:36:08 +00:00
26 lines
569 B
JSON
26 lines
569 B
JSON
{
|
|
"name": "webpack-4",
|
|
"private": true,
|
|
"version": "0.0.0",
|
|
"main": "./src/index.js",
|
|
"browser": "./src/index.js",
|
|
"scripts": {
|
|
"build": "webpack --mode=production",
|
|
"dev": "webpack --mode=development --watch",
|
|
"test": "jest"
|
|
},
|
|
"jest": {
|
|
"displayName": "webpack 4",
|
|
"setupFilesAfterEnv": [
|
|
"<rootDir>/../../jest/customMatchers.js"
|
|
]
|
|
},
|
|
"devDependencies": {
|
|
"css-loader": "^5.2.4",
|
|
"mini-css-extract-plugin": "^1.6.0",
|
|
"postcss-loader": "^4.3.0",
|
|
"webpack": "^4.46.0",
|
|
"webpack-cli": "^4.7.0"
|
|
}
|
|
}
|