Retrospring/package.json

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

41 lines
1.4 KiB
JSON
Raw Normal View History

2020-12-24 14:26:54 -08:00
{
2020-12-26 09:38:18 -08:00
"scripts": {
"lint": "yarn run eslint --ext .ts app/javascript",
2023-01-03 03:27:54 -08:00
"lint:fix": "yarn run eslint --ext .ts app/javascript --fix",
2023-01-18 13:06:53 -08:00
"lint:css": "yarn run stylelint \"app/assets/stylesheets/**/*.scss\"",
"build": "esbuild app/javascript/*.* --bundle --sourcemap --outdir=app/assets/builds --public-path=assets",
2023-01-03 03:27:54 -08:00
"build:css": "sass ./app/assets/stylesheets/application.sass.scss:./app/assets/builds/application.css --no-source-map --load-path=node_modules"
2020-12-26 09:38:18 -08:00
},
2020-12-24 14:26:54 -08:00
"dependencies": {
"@fontsource/lexend": "^4.5.15",
"@fortawesome/fontawesome-free": "^6.6.0",
"@github/hotkey": "^3.1.1",
"@hotwired/stimulus": "^3.2.2",
"@hotwired/turbo-rails": "^8.0.5",
"@melloware/coloris": "^0.24.0",
2023-01-03 12:33:45 -08:00
"@popperjs/core": "^2.11",
"@rails/request.js": "^0.0.9",
2023-01-03 12:33:45 -08:00
"bootstrap": "^5.2",
"buffer": "^6.0.3",
"cheet.js": "^0.3.3",
2022-01-05 17:56:35 -08:00
"croppr": "^2.3.1",
2022-10-10 12:38:37 -07:00
"i18n-js": "^4.0",
"js-cookie": "2.2.1",
"sass": "^1.77.8",
"sweetalert": "1.1.3",
"toastify-js": "^1.12.0",
"typescript": "^5.5.4",
2024-07-20 21:34:29 -07:00
"yarn": "^1.22.22"
2020-12-24 14:26:54 -08:00
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^6.21.0",
2024-03-03 08:58:56 -08:00
"esbuild": "^0.17.0",
"eslint": "^8.57.0",
"eslint-plugin-import": "^2.29.1",
"stylelint": "^15.11.0",
"stylelint-config-standard-scss": "^11.1.0",
"stylelint-scss": "^5.3.2"
2020-12-24 14:26:54 -08:00
}
}