mirror of
https://github.com/edcommonwealth/sqm-dashboards.git
synced 2026-03-07 13:38:18 -08:00
25 lines
481 B
JSON
25 lines
481 B
JSON
{
|
|
"name": "app",
|
|
"private": "true",
|
|
"dependencies": {
|
|
"@babel/preset-env": "^7.15.8",
|
|
"babel-preset-es2015": "^6.24.1",
|
|
"esbuild": "^0.13.6"
|
|
},
|
|
"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/assets/javascripts"
|
|
]
|
|
}
|
|
}
|