52 lines
1.8 KiB
JSON
Raw 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 18:10:40 +00:00
"main": "dist/editor.bundle.js",
"files": [
"dist"
],
2022-01-25 18:10:40 +00:00
"scripts": {
"build": "webpack --config webpack.prod.js",
2023-01-07 21:10:13 -08: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-02 18:33:28 -07:00
"lint": "eslint src --ext js,ts,tsx",
"playground": "webpack serve --config webpack.playground.js",
2022-11-30 22:12:40 -08: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": {
"@emotion/react": "^11.10.5",
"@emotion/styled": "^11.10.5",
"@mui/icons-material": "^5.9.3",
"@mui/material": "^5.10.11",
"@wisemapping/mindplot": "workspace:*",
"emoji-picker-react": "4.5.2",
"react-color": "^2.19.3",
"react-intl": "^6.2.1",
"react-loader-spinner": "^5.3.4",
"styled-components": "^5.3.6"
2022-01-25 18:10:40 +00:00
},
"devDependencies": {
2023-03-03 08:12:22 -03:00
"@formatjs/cli": "^6.0.4",
2022-11-12 15:11:05 -08:00
"@testing-library/react": "^13.4.0",
2023-01-14 23:04:33 -08:00
"@types/cypress-image-snapshot": "^3.1.6",
2023-01-08 19:17:16 -08:00
"babel-polyfill": "^6.26.0",
2023-01-07 13:47:53 -08:00
"cypress": "^12.3.0",
2022-01-25 18:10:40 +00:00
"cypress-image-snapshot": "^4.0.1",
2022-10-11 21:09:02 -07:00
"jest-transform-stub": "^2.0.0",
2023-02-28 21:54:30 -03:00
"react": "^18.2.0",
"react-dom": "^18.2.0",
"start-server-and-test": "^2.0.0"
},
2022-01-25 18:10:40 +00:00
"peerDependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
}
2022-11-12 15:17:06 +00:00
}