2020-12-05 02:47:02 -05:00
{
2020-12-06 16:31:48 -08:00
"name" : "@wisemapping/webapp" ,
2022-04-13 19:21:19 -03:00
"version" : "5.0.14" ,
2020-12-06 16:31:48 -08:00
"main" : "app.jsx" ,
"scripts" : {
2021-02-15 23:43:26 -08:00
"start" : "webpack serve --config webpack.dev.js " ,
"build" : "webpack --config webpack.prod.js" ,
2021-12-25 21:33:17 -08:00
"dev" : "webpack --config webpack.dev.js" ,
2020-12-07 18:47:24 -08:00
"lint" : "eslint src" ,
2021-12-17 02:13:54 +00:00
"cy:run" : "cypress run" ,
"test:integration" : "start-server-and-test start http-get://localhost:3000 cy:run" ,
2022-03-14 14:37:45 -03:00
"i18n:extract" : "formatjs extract 'src/**/*.ts*' --ignore 'src/@types/**/*' --out-file lang/en.json" ,
"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" ,
2021-12-17 02:13:54 +00:00
"test" : "yarn test:integration"
2020-12-06 16:31:48 -08:00
} ,
2021-12-22 16:26:59 -08:00
"files" : [
"src" ,
"dist"
] ,
2020-12-06 16:31:48 -08:00
"repository" : "http://www.wisemapping.com" ,
"author" : "Paulo Veiga <pveiga@gmail.com>, Ezequiel Bergamaschi <ezequielbergamaschi@gmail.com>" ,
"license" : "MIT" ,
"private" : false ,
"devDependencies" : {
2020-12-07 18:47:24 -08:00
"@formatjs/cli" : "^2.13.15" ,
2021-02-23 05:40:02 +00:00
"@testing-library/cypress" : "^7.0.3" ,
"@types/testing-library__cypress" : "^5.0.8" ,
2020-12-06 16:31:48 -08:00
"@typescript-eslint/eslint-plugin" : "^4.8.1" ,
"@typescript-eslint/parser" : "^4.8.1" ,
"brotli-webpack-plugin" : "^1.1.0" ,
"clean-webpack-plugin" : "^3.0.0" ,
2021-02-16 01:15:04 -08:00
"compression-webpack-plugin" : "^7.1.2" ,
2020-12-12 12:23:38 -08:00
"copy-webpack-plugin" : "^7.0.0" ,
2021-12-02 00:41:56 +00:00
"cross-env" : "^7.0.3" ,
2020-12-06 16:31:48 -08:00
"css-loader" : "^5.0.1" ,
2021-12-17 02:13:54 +00:00
"cypress" : "^8.4.1" ,
2021-12-02 00:41:56 +00:00
"cypress-image-snapshot" : "^4.0.1" ,
2020-12-06 16:31:48 -08:00
"eslint" : "^7.14.0" ,
2021-02-22 22:16:10 -08:00
"eslint-config-prettier" : "^8.0.0" ,
2020-12-06 16:31:48 -08:00
"eslint-plugin-react" : "^7.21.5" ,
"eslint-plugin-react-hooks" : "^4.2.0" ,
2021-02-16 22:47:09 -05:00
"file-loader" : "^6.2.0" ,
2020-12-08 19:35:02 -08:00
"html-webpack-dynamic-env-plugin" : "^0.0.2" ,
2021-02-17 00:11:08 -08:00
"html-webpack-plugin" : "^5.1.0" ,
2021-02-22 22:16:10 -08:00
"prettier" : "^2.2.1" ,
2020-12-06 16:31:48 -08:00
"sass-loader" : "^10.1.0" ,
"style-loader" : "^2.0.0" ,
"ts-loader" : "^8.0.11" ,
"ts-node" : "^9.0.0" ,
"typescript" : "^4.1.2" ,
"url-loader" : "^4.1.1" ,
"webpack" : "^5.6.0" ,
2021-02-16 01:37:24 -08:00
"webpack-bundle-analyzer" : "^4.4.0" ,
2020-12-06 16:31:48 -08:00
"webpack-cli" : "^4.2.0" ,
2021-02-15 23:43:26 -08:00
"webpack-dev-server" : "^3.11.0" ,
"webpack-merge" : "^5.7.3"
2020-12-06 16:31:48 -08:00
} ,
"dependencies" : {
2022-02-05 16:42:43 -08:00
"@emotion/react" : "^11.7.1" ,
"@emotion/styled" : "^11.6.0" ,
"@mui/icons-material" : "^5.3.0" ,
"@mui/lab" : "^5.0.0-alpha.67" ,
"@mui/material" : "^5.3.0" ,
"@mui/styles" : "^5.3.0" ,
2020-12-24 17:39:06 -08:00
"@reduxjs/toolkit" : "^1.5.0" ,
2022-01-25 22:33:39 -08:00
"@wisemapping/editor" : "^0.4.0" ,
2022-01-31 21:07:59 +00:00
"@wisemapping/mindplot" : "^5.0.2" ,
2021-02-27 18:39:26 -08:00
"axios" : "^0.21.0" ,
2022-02-07 21:06:02 -08:00
"dayjs" : "^1.10.7" ,
2022-02-05 16:42:43 -08:00
"react" : "^17.0.2" ,
2022-04-07 14:06:26 -03:00
"react-dom" : "^17.0.2" ,
2020-12-06 16:31:48 -08:00
"react-google-recaptcha" : "^2.1.0" ,
2022-05-29 10:22:57 -07:00
"react-ga4" : "^1.4.1" ,
2020-12-25 21:39:54 -08:00
"react-intl" : "^3.0.0" ,
2021-02-02 00:20:35 -08:00
"react-query" : "^3.6.0" ,
2020-12-24 17:39:06 -08:00
"react-redux" : "^7.2.2" ,
2020-12-25 21:39:54 -08:00
"react-router" : "^5.1.8" ,
2020-12-08 09:35:36 -08:00
"react-router-dom" : "^5.2.0" ,
2021-02-23 05:40:02 +00:00
"start-server-and-test" : "^1.12.0" ,
2020-12-25 21:39:54 -08:00
"styled-components" : "^5.1.7"
2020-12-06 16:31:48 -08:00
}
2021-12-19 20:11:10 -08:00
}