-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 1.07 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
{
"devDependencies": {
"@babel/core": "^7.15.0",
"@babel/preset-env": "^7.15.0",
"@babel/preset-react": "^7.14.5",
"autoprefixer": "^10.3.1",
"babel-loader": "^8.2.2",
"css-loader": "^6.2.0",
"daisyui": "^1.13.0",
"postcss": "^8.3.6",
"postcss-import": "^14.0.2",
"postcss-nesting": "^8.0.1",
"postcss-preset-env": "^6.7.0",
"style-loader": "^3.2.1",
"tailwindcss": "^2.2.7",
"webpack": "^5.51.1",
"webpack-cli": "^4.8.0"
},
"dependencies": {
"react": "^17.0.2",
"react-dom": "^17.0.2",
"tailwindcss-classnames": "^2.2.3",
"webpack-dev-server": "^4.1.0"
},
"scripts": {
"css": "tailwindcss -i src/main/resources/static/resource/source.css -o src/main/resources/static/resource/dist.css --watch --postcss",
"dev": "webpack serve --mode=development",
"css:build": "tailwindcss -i src/main/resources/static/resource/source.css -o src/main/resources/static/resource/dist.css --postcss",
"webpack:build": "webpack --mode=production",
"build": "npm run css:build && npm run webpack:build"
}
}