-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
31 lines (31 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
{
"private": true,
"scripts": {
"dev": "npm-run-all --parallel dev:*",
"dev:js": "cross-env NODE_ENV=development webpack --watch",
"dev:css": "tailwindcss -i ./styles.css -o ./src/Krompaco.RecordCollector.Web/wwwroot/dist/styles.css --postcss --watch",
"prodbuild": "npm-run-all --parallel prodbuild:*",
"prodbuild:js": "cross-env NODE_ENV=production webpack",
"prodbuild:css": "tailwindcss -i ./styles.css -o ./src/Krompaco.RecordCollector.Web/wwwroot/dist/styles.css --postcss --minify"
},
"devDependencies": {
"@tailwindcss/forms": "^0.5.9",
"@tailwindcss/typography": "^0.5.15",
"autoprefixer": "^10.4.20",
"cross-env": "^7.0",
"npm-run-all": "^4.1.5",
"tailwindcss": "^3.4.12",
"webpack": "^5.94.0",
"webpack-cli": "^5.1.4"
},
"dependencies": {
"@babel/core": "^7.25.2",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-transform-runtime": "^7.25.4",
"@babel/preset-env": "^7.25.4",
"@hotwired/stimulus": "^3.2.2",
"@hotwired/stimulus-webpack-helpers": "^1.0.1",
"@hotwired/turbo": "^8.0.10",
"babel-loader": "^9.2.1"
}
}