-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.26 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
{
"name": "ph_app",
"private": true,
"dependencies": {
"@jinsung.lim/tailwindcss-filters": "^0.1.1",
"@rails/actioncable": "^6.0.0",
"@rails/activestorage": "^6.0.0",
"@rails/ujs": "^6.0.0",
"@rails/webpacker": "4.3.0",
"@tailwindcss/aspect-ratio": "^0.2.0",
"@tailwindcss/forms": "^0.2.1",
"@tailwindcss/typography": "^0.3.1",
"autoprefixer": "^9",
"expose-loader": "^1.0.3",
"jquery": "^3.5.1",
"postcss": "^7",
"select2": "^4.0.13",
"stimulus": "^2.0.0",
"stimulus-data-bindings": "^1.3.0",
"tailwindcss": "yarn:@tailwindcss/postcss7-compat",
"tailwindcss-stimulus-components": "^2.0.12",
"turbolinks": "^5.2.0",
"webpack-manifest-plugin": "^3.0.0"
},
"version": "0.1.0",
"devDependencies": {
"mangle-css-class-webpack-plugin": "^4.0.11",
"webpack-bundle-analyzer": "^4.4.0",
"webpack-dev-server": "^3.11.0"
},
"engines" : { "node": "14.19.1" },
"scripts": {
"webpack:analyze": "yarn webpack:build_json && yarn webpack:analyze_json",
"webpack:build_json": "RAILS_ENV=${RAILS_ENV:-production} NODE_ENV=${NODE_ENV:-production} bin/webpack --profile --json > tmp/webpack-stats.json",
"webpack:analyze_json": "webpack-bundle-analyzer tmp/webpack-stats.json public/packs"
}
}