wisemapping-frontend/packages/editor/package.json

52 lines
1.8 KiB
JSON
Raw Permalink Normal View History

{
"name": "@wisemapping/editor",
"version": "0.6.1",
"repository": "http://www.wisemapping.com",
"license": "MIT",
"author": "Paulo Veiga <pveiga@gmail.com>, Ezequiel Bergamaschi <ezequielbergamaschi@gmail.com>",
2022-01-25 19:10:40 +01:00
"main": "dist/editor.bundle.js",
"files": [
"dist"
],
2022-01-25 19:10:40 +01:00
"scripts": {
"build": "webpack --config webpack.prod.js",
2023-01-08 06:10:13 +01:00
"cy:open": "cypress open",
"cy:run": "cypress run",
"i18n:compile": "bash -c 'for lang in {'es','en','fr','de','zh','ru'};do formatjs compile lang/${lang}.json --ast --out-file src/compiled-lang/${lang}.json;done'",
"i18n:extract": "formatjs extract 'src/**/*.ts*' --ignore 'src/@types/**/*' --out-file lang/en.json",
2022-11-03 02:33:28 +01:00
"lint": "eslint src --ext js,ts,tsx",
"playground": "webpack serve --config webpack.playground.js",
2022-12-01 07:12:40 +01:00
"test": "yarn test:unit && yarn test:integration",
"test:integration": "npx start-server-and-test 'yarn playground' http-get://localhost:8081 'yarn cy:run'",
"test:unit": "jest ./test/unit/* --detectOpenHandles"
},
"dependencies": {
2024-02-12 06:52:12 +01:00
"@emotion/react": "^11.11.3",
"@emotion/styled": "^11.11.0",
"@mui/icons-material": "^5.15.9",
"@mui/material": "^5.15.9",
"@wisemapping/mindplot": "workspace:*",
2024-02-12 06:52:12 +01:00
"emoji-picker-react": "4.7.14",
"react-color": "^2.19.3",
2024-02-12 06:52:12 +01:00
"react-intl": "^6.6.2",
"react-loader-spinner": "^6.1.6",
"styled-components": "^5.3.6"
2022-01-25 19:10:40 +01:00
},
"devDependencies": {
2024-02-12 06:52:12 +01:00
"@formatjs/cli": "^6.2.7",
2022-11-13 00:11:05 +01:00
"@testing-library/react": "^13.4.0",
2024-02-12 06:52:12 +01:00
"@types/cypress-image-snapshot": "^3.1.9",
2023-01-09 04:17:16 +01:00
"babel-polyfill": "^6.26.0",
2024-02-11 22:00:55 +01:00
"cypress": "^13.6.4",
2022-01-25 19:10:40 +01:00
"cypress-image-snapshot": "^4.0.1",
2022-10-12 06:09:02 +02:00
"jest-transform-stub": "^2.0.0",
2023-03-01 01:54:30 +01:00
"react": "^18.2.0",
"react-dom": "^18.2.0",
2024-02-12 06:52:12 +01:00
"start-server-and-test": "^2.0.3"
},
2022-01-25 19:10:40 +01:00
"peerDependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
}
2022-11-12 16:17:06 +01:00
}