2020-12-05 08:47:02 +01:00
{
"name" : "@wisemapping/editor" ,
2022-09-11 21:59:38 +02:00
"version" : "0.4.2" ,
2022-01-25 19:10:40 +01:00
"main" : "dist/editor.bundle.js" ,
"scripts" : {
"build" : "webpack --config webpack.prod.js" ,
"playground" : "webpack serve --config webpack.playground.js" ,
"cy:run" : "cypress run" ,
"test:integration" : "start-server-and-test 'yarn playground' http-get://localhost:8081 'yarn cy:run'" ,
2022-02-04 20:26:54 +01:00
"test" : "yarn test:integration" ,
2022-10-05 23:54:23 +02:00
"test:unit" : "jest ./test/unit/* --detectOpenHandles" ,
2022-10-23 02:49:46 +02:00
"i18n:extract" : "formatjs extract 'src/**/*.ts*' --ignore 'src/@types/**/*' --out-file lang/en.json" ,
2022-03-14 18:37:45 +01:00
"i18n:compile" : "for lang in {'es','en','fr','de','zh','ru'};do formatjs compile lang/${lang}.json --ast --out-file src/compiled-lang/${lang}.json;done"
2022-01-25 19:10:40 +01:00
} ,
2020-12-05 08:47:02 +01:00
"repository" : "http://www.wisemapping.com" ,
"author" : "Paulo Veiga <pveiga@gmail.com>, Ezequiel Bergamaschi <ezequielbergamaschi@gmail.com>" ,
"license" : "MIT" ,
"private" : false ,
"devDependencies" : {
2022-10-31 06:17:01 +01:00
"@babel/preset-env" : "^7.19.4" ,
"@formatjs/cli" : "^5.1.3" ,
2022-10-05 23:54:23 +02:00
"@testing-library/react" : "^12.0.0" ,
"@types/jest" : "^29.0.0" ,
2022-10-12 06:09:02 +02:00
"babel-plugin-transform-require-context" : "^0.1.1" ,
2022-10-05 23:54:23 +02:00
"babel-polyfill" : "^6.26.0" ,
2022-01-25 19:10:40 +01:00
"clean-webpack-plugin" : "^4.0.0" ,
"copy-webpack-plugin" : "^10.2.1" ,
2022-10-31 06:17:01 +01:00
"css-loader" : "^6.7.1" ,
2022-10-31 06:45:31 +01:00
"cypress" : "^10.11.0" ,
2022-01-25 19:10:40 +01:00
"cypress-image-snapshot" : "^4.0.1" ,
2022-10-31 06:17:01 +01:00
"eslint-plugin-react-hooks" : "^4.6.0" ,
2022-01-25 19:10:40 +01:00
"html-webpack-plugin" : "^5.5.0" ,
2022-10-12 06:09:02 +02:00
"jest-transform-stub" : "^2.0.0" ,
2022-10-31 06:17:01 +01:00
"react" : "^18.2.0" ,
"style-loader" : "^3.3.1" ,
2022-10-06 02:35:12 +02:00
"ts-jest" : "^27.1.0" ,
2022-10-31 06:17:01 +01:00
"typescript" : "^4.8.4" ,
2022-09-11 21:38:56 +02:00
"webpack" : "^5.74.0" ,
2022-01-25 19:10:40 +01:00
"webpack-merge" : "^5.8.0"
2020-12-05 08:47:02 +01:00
} ,
"dependencies" : {
2022-10-31 06:17:01 +01:00
"@emotion/styled" : "^11.10.5" ,
"@wisemapping/mindplot" : "^5.0.15" ,
"emoji-picker-react" : "^4.4.4" ,
"react-color" : "^2.19.3" ,
"react-dom" : "^18.2.0" ,
"styled-components" : "^5.3.6"
2022-01-25 19:10:40 +01:00
} ,
"peerDependencies" : {
2022-10-31 06:17:01 +01:00
"@emotion/styled" : "^11.10.5" ,
2022-10-12 06:09:02 +02:00
"@mui/icons-material" : "^5.9.3" ,
2022-10-31 06:17:01 +01:00
"@mui/material" : "^5.10.11" ,
"react" : "^18.2.0" ,
"react-intl" : "^5.25.1" ,
"styled-components" : "^5.3.6"
2020-12-05 08:47:02 +01:00
}
2022-10-12 06:09:02 +02:00
}