mirror of
https://github.com/edcommonwealth/sqm-dashboards.git
synced 2026-03-07 13:38:18 -08:00
Revert "Stop tracking the builds folder in source control" This reverts commit867c2a80d2. Revert "move watch script to package.json" This reverts commit5fc9e7b3cc. Revert "add darwin as a platform to gemfile.lock" This reverts commit393796bb87. Revert "Update README with bundling command" This reverts commit3d8b4c24b7. Revert "Change bundling script to use yarn." This reverts commitafbbb0fc75. Revert "import footer as scss partial" This reverts commit4bc306c7c7. Revert "remove sqm_footer" This reverts commit4582e8c8ab. Revert "Move footer import before fontawesome" This reverts commit2ad120727f. Revert "Add sqm_footer" This reverts commit8d5702e9aa. Revert "Rename footer.scss -> _footer.scss" This reverts commit0ec07e7f18.
32 lines
698 B
JSON
32 lines
698 B
JSON
{
|
|
"name": "app",
|
|
"private": "true",
|
|
"dependencies": {
|
|
"@babel/preset-env": "^7.15.8",
|
|
"@popperjs/core": "^2.10.2",
|
|
"@rails/actioncable": "^6.0.0",
|
|
"@rails/activestorage": "^6.0.0",
|
|
"@rails/ujs": "^6.0.0",
|
|
"babel-preset-es2015": "^6.24.1",
|
|
"bootstrap": "^5.1.3",
|
|
"esbuild": "^0.13.6",
|
|
"turbolinks": "^5.2.0"
|
|
},
|
|
"scripts": {
|
|
"build": "esbuild app/javascript/*.* --bundle --outdir=app/assets/builds",
|
|
"test": "jest"
|
|
},
|
|
"devDependencies": {
|
|
"jest": "^27.2.5"
|
|
},
|
|
"jest": {
|
|
"roots": [
|
|
"./spec/javascript"
|
|
],
|
|
"moduleDirectories": [
|
|
"node_modules",
|
|
"app/javascript"
|
|
],
|
|
"testEnvironment": "jsdom"
|
|
}
|
|
}
|