-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
84 lines (84 loc) · 3 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
{
"name": "shopline",
"description": "Shopline is a leading online marketplace, offering a wide range of products to cater to all your needs.",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/binos30/shopline.git"
},
"keywords": [
"ruby",
"rails",
"ecommerce",
"mvc",
"rails-application",
"web-framework",
"mvc-framework",
"e-commerce",
"ruby-on-rails",
"rails-crud",
"e-commerce-project",
"ecommerce-app",
"e-commerce-app",
"hotwire-turbo",
"turbo-rails",
"hotwire-stimulus",
"stimulus-rails"
],
"author": "Venus Lumanglas (https://binos30.github.io)",
"license": "MIT",
"bugs": {
"url": "https://github.com/binos30/shopline/issues"
},
"engines": {
"yarn": "4.5.0",
"node": "^20.15.1"
},
"homepage": "https://shopline-t6yk.onrender.com",
"dependencies": {
"@fortawesome/fontawesome-free": "^6.6.0",
"@hotwired/stimulus": "^3.2.2",
"@hotwired/turbo-rails": "^8.0.10",
"@rails/actiontext": "7.2.100",
"chart.js": "^4.4.4",
"debounce": "^2.1.1",
"flowbite": "^2.5.1",
"local-time": "^3.0.2",
"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",
"prettier": "^3.3.3"
},
"scripts": {
"build": "esbuild app/javascript/*.* --bundle --sourcemap --format=esm --outdir=app/assets/builds --public-path=/assets",
"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,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"
},
"packageManager": "yarn@4.5.0"
}