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-12-04 10:06:55 +01:00
|
|
|
"@fortawesome/fontawesome-free": "^6.5.1",
|
2023-11-06 10:19:53 +01:00
|
|
|
"@github/hotkey": "^2.3.0",
|
2023-08-07 15:36:15 +02:00
|
|
|
"@hotwired/stimulus": "^3.2.2",
|
2023-03-06 10:57:50 +01:00
|
|
|
"@hotwired/turbo-rails": "^7.3.0",
|
2023-11-13 10:22:40 +01:00
|
|
|
"@melloware/coloris": "^0.22.0",
|
2023-01-03 21:33:45 +01:00
|
|
|
"@popperjs/core": "^2.11",
|
2023-10-02 11:53:06 +02:00
|
|
|
"@rails/request.js": "^0.0.9",
|
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-10-30 10:52:44 +01:00
|
|
|
"sass": "^1.69.5",
|
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-12-08 23:20:19 +01:00
|
|
|
"typescript": "^5.3.3"
|
2020-12-24 23:26:54 +01:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2023-12-08 23:13:46 +01:00
|
|
|
"@typescript-eslint/eslint-plugin": "^6.13.2",
|
2023-12-04 10:06:12 +01:00
|
|
|
"@typescript-eslint/parser": "^6.13.1",
|
2023-08-07 21:28:06 +02:00
|
|
|
"esbuild": "^0.17.0",
|
2023-12-08 23:02:51 +01:00
|
|
|
"eslint": "^8.55.0",
|
2023-10-23 21:33:29 +02:00
|
|
|
"eslint-plugin-import": "^2.29.0",
|
2023-10-23 11:45:45 +02:00
|
|
|
"stylelint": "^15.11.0",
|
2023-11-06 10:20:01 +01:00
|
|
|
"stylelint-config-standard-scss": "^11.1.0",
|
2023-11-13 10:23:22 +01:00
|
|
|
"stylelint-scss": "^5.3.1"
|
2020-12-24 23:26:54 +01:00
|
|
|
}
|
|
|
|
}
|