sqm-dashboards/package.json
dependabot[bot] f7fa1b887c
Bump semver from 6.3.0 to 6.3.1
Bumps [semver](https://github.com/npm/node-semver) from 6.3.0 to 6.3.1.
- [Release notes](https://github.com/npm/node-semver/releases)
- [Changelog](https://github.com/npm/node-semver/blob/v6.3.1/CHANGELOG.md)
- [Commits](https://github.com/npm/node-semver/compare/v6.3.0...v6.3.1)

---
updated-dependencies:
- dependency-name: semver
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
2023-07-14 21:54:40 +00:00

49 lines
2 KiB
JSON

{
"name": "app",
"description": "School quality framework",
"engines": {
"node": "18.x"
},
"private": "true",
"dependencies": {
"@babel/core": "^7.22.9",
"@babel/helper-compilation-targets": "^7.22.9",
"@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": "^7.22.5",
"@babel/preset-env": "^7.22.9",
"@fortawesome/fontawesome-free": "^6.0.0-beta3",
"@hotwired/stimulus": "^3.0.1",
"@hotwired/turbo-rails": "^7.1.1",
"@popperjs/core": "^2.10.2",
"@rails/actioncable": "^7.0.6",
"@rails/activestorage": "^7.0.6",
"@rails/ujs": "^7.0.6",
"bootstrap": "^5.1.3",
"debounce": "^1.2.1",
"esbuild": "^0.18.12",
"sass": "^1.43.4",
"semver": "6.3.1"
},
"scripts": {
"build": "esbuild app/javascript/*.* --bundle --outdir=app/assets/builds",
"test": "jest",
"build:css": "sass ./app/assets/stylesheets/application.sass.scss ./app/assets/builds/application.css --no-source-map --load-path=node_modules ; sass ./app/assets/stylesheets/sqm.sass.scss ./app/assets/builds/sqm.css --no-source-map --load-path=node_modules ; sass ./app/assets/stylesheets/welcome.sass.scss ./app/assets/builds/welcome.css --no-source-map --load-path=node_modules",
"watch:css": "sass ./app/assets/stylesheets/application.sass.scss ./app/assets/builds/application.css --no-source-map --load-path=node_modules --watch & sass ./app/assets/stylesheets/sqm.sass.scss ./app/assets/builds/sqm.css --no-source-map --load-path=node_modules --watch & sass ./app/assets/stylesheets/welcome.sass.scss ./app/assets/builds/welcome.css --no-source-map --load-path=node_modules --watch",
"watch:all": "yarn watch:css & yarn build --watch"
},
"devDependencies": {
"jest": "^29.6.1",
"jest-environment-jsdom": "^29.6.1",
"markdownlint": "^0.29.0",
"prettier": "3.0.0"
},
"jest": {
"roots": [
"./spec/javascript"
],
"moduleDirectories": [
"node_modules",
"app/javascript"
],
"testEnvironment": "jsdom"
}
}