-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
95 lines (95 loc) · 3.55 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "instablog",
"description": "A simple web app for CRUDing a blog post and sending feedback email with authentication.",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/binos30/blog-app.git"
},
"keywords": [
"ruby",
"rails",
"blog",
"framework",
"mvc",
"article",
"rails-application",
"web-framework",
"mvc-framework",
"blog-article",
"ruby-on-rails",
"blog-post",
"rails-crud",
"rails-send-mail",
"hotwire-turbo",
"turbo-rails",
"hotwire-stimulus",
"stimulus-rails"
],
"author": "Venus Lumanglas (https://binos30.github.io)",
"license": "MIT",
"bugs": {
"url": "https://github.com/binos30/blog-app/issues"
},
"engines": {
"yarn": "4.5.0",
"node": "^20.15.1"
},
"homepage": "https://instablog.onrender.com",
"dependencies": {
"@hotwired/stimulus": "^3.2.2",
"@hotwired/turbo-rails": "^8.0.10",
"@popperjs/core": "^2.11.8",
"@rails/actiontext": "7.2.100",
"autoprefixer": "^10.4.20",
"bootstrap": "^5.3.3",
"bootstrap-icons": "^1.11.3",
"postcss": "^8.4.47",
"postcss-cli": "^11.0.0",
"sass": "^1.79.3",
"trix": "^2.1.5"
},
"devDependencies": {
"@eslint/js": "^9.11.1",
"esbuild": "^0.24.0",
"eslint": "^9.11.1",
"eslint-formatter-gha": "^1.5.1",
"globals": "^15.9.0",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"nodemon": "^3.1.7",
"prettier": "^3.3.3"
},
"scripts": {
"build": "esbuild app/javascript/*.* --bundle --sourcemap --format=esm --outdir=app/assets/builds --public-path=/assets",
"build:css:compile": "sass ./app/assets/stylesheets/application.bootstrap.scss:./app/assets/builds/application.css --no-source-map --load-path=node_modules",
"build:css:prefix": "postcss ./app/assets/builds/application.css --use=autoprefixer --output=./app/assets/builds/application.css",
"build:css": "yarn build:css:compile && yarn build:css:prefix",
"watch:css": "nodemon --watch ./app/assets/stylesheets/ --ext scss --exec \"yarn build:css\"",
"eslint": "eslint . --cache --cache-location .cache/eslint --report-unused-disable-directives",
"eslint-ci": "eslint . --cache --cache-strategy content --cache-location .cache/eslint --format gha",
"eslint-fix": "eslint . --cache --cache-location .cache/eslint --fix --report-unused-disable-directives",
"prettier": "prettier . --check --cache --cache-location .cache/prettier",
"prettier-ci": "prettier . --check --cache --cache-strategy content --cache-location .cache/prettier",
"prettier-fix": "prettier . --write --cache --cache-location .cache/prettier",
"rubocop": "bin/rubocop",
"rubocop-ci": "bin/rubocop -f github",
"rubocop-fix": "bin/rubocop -A",
"slim-lint": "bin/bundle exec slim-lint 'app/views/**/*.slim'",
"stree": "bin/bundle exec stree check '**/*.{rake,rb}'",
"stree-fix": "bin/bundle exec stree write '**/*.{rake,rb}'",
"postinstall": "husky"
},
"lint-staged": {
"{app,config,db/migrate,lib,spec}/**/*.{rake,rb}": "./bin/bundle exec stree write",
"**/*.{rake,rb}": "./bin/rubocop --force-exclusion -A",
"spec/**/*_spec.rb": "./bin/rspec",
"app/views/**/*.slim": "./bin/bundle exec slim-lint",
"**/*.{css,html,js,json,md,mjs,scss,yml}": "./node_modules/.bin/prettier --write --cache --cache-location .cache/prettier",
"**/*.{cjs,js,mjs}": "./node_modules/.bin/eslint --cache --cache-location .cache/eslint --fix --report-unused-disable-directives"
},
"browserslist": [
"defaults"
],
"packageManager": "yarn@4.5.0"
}