2020-12-24 23:26:54 +01:00
|
|
|
{
|
2020-12-26 18:38:18 +01:00
|
|
|
"scripts": {
|
|
|
|
"lint": "yarn run eslint --ext .ts app/javascript",
|
2023-01-03 12:27:54 +01:00
|
|
|
"lint:fix": "yarn run eslint --ext .ts app/javascript --fix",
|
2023-01-18 22:06:53 +01:00
|
|
|
"lint:css": "yarn run stylelint \"app/assets/stylesheets/**/*.scss\"",
|
2023-01-06 08:21:22 +01:00
|
|
|
"build": "esbuild app/javascript/*.* --bundle --sourcemap --outdir=app/assets/builds --public-path=assets",
|
2023-01-03 12:27:54 +01: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 18:38:18 +01:00
|
|
|
},
|
2020-12-24 23:26:54 +01:00
|
|
|
"dependencies": {
|
2023-01-23 10:02:16 +01:00
|
|
|
"@fontsource/lexend": "^4.5.15",
|
2023-04-03 11:57:34 +02:00
|
|
|
"@fortawesome/fontawesome-free": "^6.4.0",
|
2022-12-05 10:01:43 +01:00
|
|
|
"@hotwired/stimulus": "^3.2.1",
|
2023-03-06 10:57:50 +01:00
|
|
|
"@hotwired/turbo-rails": "^7.3.0",
|
2023-02-20 11:02:32 +01:00
|
|
|
"@melloware/coloris": "^0.18.0",
|
2023-01-03 21:33:45 +01:00
|
|
|
"@popperjs/core": "^2.11",
|
2022-11-21 10:10:37 +01:00
|
|
|
"@rails/request.js": "^0.0.8",
|
2023-01-03 21:33:45 +01:00
|
|
|
"bootstrap": "^5.2",
|
2023-01-21 20:50:06 +01:00
|
|
|
"buffer": "^6.0.3",
|
2020-12-25 03:33:49 +01:00
|
|
|
"cheet.js": "^0.3.3",
|
2022-01-06 02:56:35 +01:00
|
|
|
"croppr": "^2.3.1",
|
2022-10-10 21:38:37 +02:00
|
|
|
"i18n-js": "^4.0",
|
2020-12-25 03:33:49 +01:00
|
|
|
"js-cookie": "2.2.1",
|
2023-04-17 11:57:31 +02:00
|
|
|
"sass": "^1.62.0",
|
2020-12-25 03:33:49 +01:00
|
|
|
"sweetalert": "1.1.3",
|
2022-07-25 11:07:39 +02:00
|
|
|
"toastify-js": "^1.12.0",
|
2023-04-10 22:25:01 +02:00
|
|
|
"typescript": "^5.0.4"
|
2020-12-24 23:26:54 +01:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2020-12-26 18:38:18 +01:00
|
|
|
"@typescript-eslint/eslint-plugin": "^4.11.0",
|
|
|
|
"@typescript-eslint/parser": "^4.11.0",
|
2023-04-17 11:58:03 +02:00
|
|
|
"esbuild": "^0.17.17",
|
2020-12-26 18:38:18 +01:00
|
|
|
"eslint": "^7.16.0",
|
2023-01-23 10:02:29 +01:00
|
|
|
"eslint-plugin-import": "^2.27.5",
|
2023-01-18 22:06:53 +01:00
|
|
|
"stylelint": "^14.16.1",
|
|
|
|
"stylelint-config-standard-scss": "^6.1.0",
|
2023-03-27 11:58:46 +02:00
|
|
|
"stylelint-scss": "^4.6.0"
|
2020-12-24 23:26:54 +01:00
|
|
|
}
|
|
|
|
}
|