mirror of
https://github.com/edcommonwealth/sqm-dashboards.git
synced 2026-03-07 21:48:16 -08:00
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"
|
|
}
|
|
}
|