-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.11 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
38
39
40
41
42
43
44
45
{
"name": "app",
"private": "true",
"type": "module",
"scripts": {
"build": "bun bun.config.js",
"build:css": "tailwindcss -i ./app/assets/stylesheets/application.pcss -o ./app/assets/builds/application.css --minify",
"lint": "standard",
"lint:css": "stylelint app/assets/stylesheets"
},
"dependencies": {
"@fortawesome/fontawesome-free": "6.7.0",
"@hotwired/stimulus": "3.2.2",
"@hotwired/turbo-rails": "8.0.12",
"@tailwindcss/typography": "0.5.15",
"autoprefixer": "10.4.20",
"daisyui": "4.12.14",
"postcss": "8.4.49",
"tailwindcss": "3.4.15"
},
"devDependencies": {
"standard": "17.1.2",
"stylelint": "16.10.0",
"stylelint-config-standard-scss": "13.1.0"
},
"stylelint": {
"extends": "stylelint-config-standard-scss",
"rules": {
"import-notation": "string",
"comment-empty-line-before": "never",
"at-rule-no-unknown": null,
"scss/at-rule-no-unknown": [
true,
{
"ignoreAtRules": [
"tailwind"
]
}
]
},
"ignoreFiles": [
"!**/*.pcss"
]
}
}