-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 1 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
{
"name": "reeper",
"private": true,
"dependencies": {
"@fortawesome/fontawesome-free": "^6.7.2",
"@hotwired/stimulus": "^3.2.2",
"@hotwired/stimulus-webpack-helpers": "^1.0.1",
"@rails/actiontext": "^8.0",
"@rails/activestorage": "^8.0",
"@tailwindcss/forms": "^0.5.10",
"@tailwindcss/typography": "^0.5.16",
"autoprefixer": "^10.4.20",
"clipboard-polyfill": "^4.1.1",
"lodash": "^4.17.19",
"postcss": "^8.4.42",
"postcss-cli": "^11.0.0",
"postcss-import": "^16.1.0",
"postcss-nesting": "^13.0.1",
"tailwindcss": "^3.4.17",
"trix": "^2.1.12",
"turbolinks": "^5.2.0"
},
"devDependencies": {
"copyfiles": "^2.4.1",
"webpack": "^5.97.1",
"webpack-cli": "^6.0.1"
},
"scripts": {
"build:css": "copyfiles -f node_modules/@fortawesome/fontawesome-free/webfonts/* public/webfonts && postcss ./app/assets/stylesheets/application.postcss.css -o ./app/assets/builds/application.css",
"build": "webpack --config webpack.config.js"
}
}