ToolJet/package.json

33 lines
1.3 KiB
JSON
Raw Normal View History

2021-04-30 10:10:48 +00:00
{
"lint-staged": {
"./frontend/src/**/*.jsx": [
"eslint --fix"
]
},
"devDependencies": {
"@babel/core": "^7.4.3",
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/preset-env": "^7.4.3",
"@babel/preset-react": "^7.0.0",
"babel-loader": "^8.0.5",
"html-webpack-plugin": "^3.2.0",
"path": "^0.12.7",
"webpack": "^4.29.6",
"webpack-cli": "^3.3.0"
2021-04-30 10:10:48 +00:00
},
"dependencies": {
2021-07-30 03:51:18 +00:00
"@nestjs/cli": "^8.1.0",
"eslint": "^7.25.0",
"ts-node": "^10.1.0"
},
"scripts": {
2021-07-30 03:51:18 +00:00
"build": "npm --prefix frontend install && NODE_ENV=production npm --prefix frontend run build && npm --prefix server install && NODE_ENV=production npm --prefix server run build",
2021-08-06 14:07:45 +00:00
"start:prod": "npm --prefix server run start:prod",
"deploy": "cp -a frontend/build/. public/",
"heroku-postbuild": "npm run build && npm run deploy",
"heroku-prebuild": "npm --prefix frontend install && npm --prefix server install ",
"cy:run": "cypress run --env db.name=$TEST_PG_DB,db.user=$TEST_PG_USERNAME,db.password=$TEST_PG_PASSWORD",
"cy:open": "cypress open --env db.name=$TEST_PG_DB,db.user=$TEST_PG_USERNAME,db.password=$TEST_PG_PASSWORD"
2021-04-30 10:10:48 +00:00
}
}