-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 1005 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 1005 Bytes
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
{
"name": "app",
"private": "true",
"devDependencies": {
"@thoughtbot/eslint-config": "^1.0.3",
"@thoughtbot/stylelint-config": "^4.0.0",
"eslint": "^8.9.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.5.3",
"stylelint": "^16.15.0"
},
"scripts": {
"lint": "run-p lint:eslint lint:stylelint lint:prettier",
"lint:eslint": "eslint --max-warnings=0 --no-error-on-unmatched-pattern 'app/javascript/**/*.js'",
"lint:stylelint": "stylelint 'app/assets/stylesheets/**/*.css'",
"lint:prettier": "prettier --check '**/*' --ignore-unknown",
"fix:prettier": "prettier --write '**/*' --ignore-unknown",
"build:css": "postcss ./app/assets/stylesheets/application.postcss.css -o ./app/assets/builds/application.css"
},
"dependencies": {
"autoprefixer": "^10.4.21",
"modern-normalize": "^3.0.1",
"postcss": "^8.5.3",
"postcss-cli": "^11.0.0",
"postcss-import": "^16.1.0",
"postcss-nesting": "^13.0.1",
"postcss-url": "^10.1.3"
}
}