Retrospring/package.json

39 lines
1.3 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",
2023-01-03 07:15:39 -08:00
"@fortawesome/fontawesome-free": "^6.2.1",
"@hotwired/stimulus": "^3.2.1",
"@hotwired/turbo-rails": "^7.2.4",
"@melloware/coloris": "^0.17.1",
2023-01-03 12:33:45 -08:00
"@popperjs/core": "^2.11",
"@rails/request.js": "^0.0.8",
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",
2023-01-03 03:27:54 -08:00
"sass": "^1.57.1",
"sweetalert": "1.1.3",
"toastify-js": "^1.12.0",
"typescript": "^4.9.4"
2020-12-24 14:26:54 -08:00
},
"devDependencies": {
2020-12-26 09:38:18 -08:00
"@typescript-eslint/eslint-plugin": "^4.11.0",
"@typescript-eslint/parser": "^4.11.0",
"esbuild": "^0.17.5",
2020-12-26 09:38:18 -08:00
"eslint": "^7.16.0",
"eslint-plugin-import": "^2.27.5",
2023-01-18 13:06:53 -08:00
"stylelint": "^14.16.1",
"stylelint-config-standard-scss": "^6.1.0",
"stylelint-scss": "^4.3.0"
2020-12-24 14:26:54 -08:00
}
}