1
0
Fork 0
mirror of synced 2024-05-29 00:29:39 +12:00
budibase/package.json

40 lines
1.4 KiB
JSON
Raw Normal View History

2019-03-20 10:45:21 +13:00
{
2019-06-08 01:18:10 +12:00
"name": "root",
"private": true,
"devDependencies": {
"@rollup/plugin-json": "^4.0.2",
2020-02-26 04:21:23 +13:00
"babel-eslint": "^10.0.3",
2020-02-01 03:23:16 +13:00
"eslint": "^6.8.0",
2020-06-12 04:14:28 +12:00
"eslint-plugin-cypress": "^2.11.1",
2020-02-01 03:23:16 +13:00
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-svelte3": "^2.7.3",
"kill-port": "^1.6.1",
2020-02-22 07:06:23 +13:00
"lerna": "3.14.1",
2020-02-01 03:23:16 +13:00
"prettier": "^1.19.1",
2020-10-15 01:21:43 +13:00
"prettier-plugin-svelte": "^1.4.0",
"rimraf": "^3.0.2",
2020-03-05 05:47:47 +13:00
"rollup-plugin-replace": "^2.2.0",
"svelte": "^3.30.0"
2019-09-23 12:04:30 +12:00
},
2020-01-23 02:50:39 +13:00
"scripts": {
"bootstrap": "lerna bootstrap",
"build": "lerna run build",
"initialise": "lerna run initialise",
2020-02-23 11:29:11 +13:00
"publishdev": "lerna run publishdev",
"publishnpm": "yarn build && lerna publish --force-publish",
"restore": "npm run clean && npm run bootstrap && npm run build",
"nuke": "rimraf ~/.budibase && npm run restore",
"clean": "lerna clean",
"kill-port": "kill-port 4001",
"dev": "yarn run kill-port && node ./scripts/symlinkDev.js && lerna run --parallel dev:builder --concurrency 1",
2020-02-01 03:23:16 +13:00
"test": "lerna run test",
"lint": "eslint packages",
"lint:fix": "eslint --fix packages",
"format": "prettier --write \"{,!(node_modules)/**/}*.{js,jsx,svelte}\"",
"test:e2e": "lerna run cy:test",
"test:e2e:ci": "lerna run cy:ci",
"build:docker": "cd hosting/scripts/linux/ && ./release-to-docker-hub.sh && cd -",
"build:docker:staging": "cd hosting/scripts/linux/ && ./release-to-docker-hub.sh staging && cd -"
2020-03-12 03:04:47 +13:00
}
}