1
0
Fork 0
mirror of synced 2024-06-01 18:20:18 +12:00
budibase/packages/builder/package.json

117 lines
3.5 KiB
JSON
Raw Normal View History

2019-07-13 21:35:57 +12:00
{
2019-09-10 17:11:46 +12:00
"name": "@budibase/builder",
2020-08-21 22:31:53 +12:00
"version": "0.1.19",
2019-07-13 21:35:57 +12:00
"license": "AGPL-3.0",
2020-02-27 11:18:14 +13:00
"private": true,
2019-07-13 21:35:57 +12:00
"scripts": {
2020-05-20 02:45:09 +12:00
"build": "routify --routify-dir routify -b && rollup -c",
"start": "routify --routify-dir routify -c rollup",
2019-09-10 21:25:13 +12:00
"test": "jest",
"test:watch": "jest --watchAll",
2020-05-20 02:45:09 +12:00
"dev:builder": "routify --routify-dir routify -c rollup",
2020-06-09 23:52:00 +12:00
"rollup": "rollup -c -w",
2020-06-12 03:59:11 +12:00
"cy:setup": "node ./cypress/setup.js",
2020-06-10 01:48:25 +12:00
"cy:run": "cypress run",
"cy:open": "cypress open",
"cy:run:ci": "cypress run --browser electron --record --key f308590b-6070-41af-b970-794a3823d451",
"cy:test": "start-server-and-test cy:setup http://localhost:4001/_builder cy:run",
"cy:ci": "start-server-and-test cy:setup http://localhost:4001/_builder cy:run:ci"
2019-07-13 21:35:57 +12:00
},
"jest": {
"globals": {
"GLOBALS": {
"client": "web"
}
},
"testURL": "http://jest-breaks-if-this-does-not-exist",
"moduleNameMapper": {
"\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/internals/mocks/fileMock.js",
"\\.(css|less|sass|scss)$": "identity-obj-proxy",
"components(.*)$": "<rootDir>/src/components$1",
"builderStore(.*)$": "<rootDir>/src/builderStore$1"
},
"moduleFileExtensions": [
"js",
"svelte"
],
"moduleDirectories": [
"node_modules"
],
"transform": {
"^.+js$": "babel-jest",
"^.+.svelte$": "svelte-jester"
},
"transformIgnorePatterns": [
"/node_modules/(?!svelte).+\\.js$"
],
"modulePathIgnorePatterns": [
"<rootDir>/cypress/"
],
"setupFilesAfterEnv": [
"@testing-library/jest-dom/extend-expect"
2020-08-27 21:20:01 +12:00
],
"setupFiles": [
"./scripts/jestSetup.js"
]
2019-07-19 23:52:08 +12:00
},
2020-06-12 04:14:28 +12:00
"eslintConfig": {
"extends": [
"plugin:cypress/recommended"
2019-07-19 23:52:08 +12:00
]
},
2019-07-13 21:35:57 +12:00
"dependencies": {
2020-08-31 20:11:44 +12:00
"@budibase/bbui": "^1.29.1",
2020-08-21 22:31:53 +12:00
"@budibase/client": "^0.1.19",
2020-07-15 21:50:20 +12:00
"@budibase/colorpicker": "^1.0.1",
2020-07-15 03:00:58 +12:00
"@sentry/browser": "5.19.1",
2020-08-04 01:59:50 +12:00
"@svelteschool/svelte-forms": "^0.7.0",
2020-08-11 02:36:33 +12:00
"britecharts": "^2.16.0",
2020-07-20 21:09:11 +12:00
"d3-selection": "^1.4.1",
2020-06-01 04:12:52 +12:00
"deepmerge": "^4.2.2",
2020-08-08 05:31:40 +12:00
"fast-sort": "^2.2.0",
2019-07-13 21:35:57 +12:00
"feather-icons": "^4.21.0",
"flatpickr": "^4.5.7",
2019-07-21 20:54:19 +12:00
"lodash": "^4.17.13",
"mustache": "^4.0.1",
2020-08-11 02:56:53 +12:00
"posthog-js": "1.3.1",
"shortid": "^2.2.15",
"svelte-portal": "^0.1.0",
2020-06-02 09:04:32 +12:00
"svelte-simple-modal": "^0.4.2",
2020-08-04 01:59:50 +12:00
"uikit": "^3.1.7",
"yup": "^0.29.2"
2019-07-13 21:35:57 +12:00
},
"devDependencies": {
2019-07-19 23:52:08 +12:00
"@babel/core": "^7.5.5",
"@babel/plugin-transform-runtime": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@babel/runtime": "^7.5.5",
"@rollup/plugin-alias": "^3.0.1",
"@rollup/plugin-json": "^4.0.3",
2020-05-20 01:19:32 +12:00
"@sveltech/routify": "1.7.11",
2020-06-26 09:34:38 +12:00
"@testing-library/jest-dom": "^5.11.0",
"@testing-library/svelte": "^3.0.0",
2019-07-19 23:52:08 +12:00
"babel-jest": "^24.8.0",
2020-06-09 23:52:00 +12:00
"cypress": "^4.8.0",
"cypress-terminal-report": "^1.4.1",
2020-07-03 03:26:43 +12:00
"eslint-plugin-cypress": "^2.11.1",
2020-08-08 03:13:57 +12:00
"identity-obj-proxy": "^3.0.0",
2019-07-19 23:52:08 +12:00
"jest": "^24.8.0",
2019-07-15 17:59:46 +12:00
"ncp": "^2.0.0",
2020-06-12 03:59:11 +12:00
"rimraf": "^3.0.2",
2019-07-13 21:35:57 +12:00
"rollup": "^1.12.0",
"rollup-plugin-alias": "^1.5.2",
"rollup-plugin-commonjs": "^10.0.0",
"rollup-plugin-copy": "^3.0.0",
"rollup-plugin-livereload": "^1.0.0",
"rollup-plugin-node-builtins": "^2.1.2",
"rollup-plugin-node-globals": "^1.4.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-svelte": "^5.0.3",
"rollup-plugin-terser": "^4.0.4",
"rollup-plugin-url": "^2.2.2",
2020-06-10 01:48:25 +12:00
"start-server-and-test": "^1.11.0",
2020-06-26 09:34:38 +12:00
"svelte": "3.23.x",
"svelte-jester": "^1.0.6"
2019-10-12 06:48:09 +13:00
},
2019-10-12 06:51:03 +13:00
"gitHead": "115189f72a850bfb52b65ec61d932531bf327072"
}