wisemapping-frontend/packages/webapp/package.json

58 lines
2.1 KiB
JSON
Raw Normal View History

{
2020-12-07 01:31:48 +01:00
"name": "@wisemapping/webapp",
"version": "5.1.1",
"repository": "http://www.wisemapping.com",
"license": "MIT",
"author": "Paulo Veiga <pveiga@gmail.com>, Ezequiel Bergamaschi <ezequielbergamaschi@gmail.com>",
2020-12-07 01:31:48 +01:00
"main": "app.jsx",
2021-12-23 01:26:59 +01:00
"files": [
"src",
"dist"
],
"scripts": {
"build": "webpack --config webpack.prod.js",
"cy:open": "npx cypress open",
"cy:run": "npx cypress run",
"dev": "webpack --config webpack.dev.js",
"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",
"lint": "eslint src --ext js,ts,tsx",
"start": "webpack serve --config webpack.dev.js ",
"test": "yarn test:integration",
"test:integration": "npx start-server-and-test start http-get://localhost:3000 cy:run"
2020-12-07 01:31:48 +01:00
},
"dependencies": {
2024-02-11 21:01:49 +01:00
"@emotion/react": "^11.11.3",
2023-08-01 06:51:32 +02:00
"@emotion/styled": "^11.11.0",
2024-02-11 21:01:49 +01:00
"@mui/icons-material": "^5.15.9",
"@mui/lab": "^5.0.0-alpha.165",
"@mui/material": "^5.15.9",
"@reduxjs/toolkit": "^2.1.0",
"@wisemapping/editor": "workspace:^",
"axios": "^1.6.7",
"dayjs": "^1.11.10",
"react": "^18.2.0",
2022-11-12 16:17:06 +01:00
"react-dom": "^18.2.0",
2024-02-11 21:01:49 +01:00
"react-ga4": "^2.1.0",
"react-google-recaptcha": "^3.1.0",
"react-intl": "^6.6.2",
"react-query": "^3.39.3",
"react-redux": "^9.1.0",
"react-router-dom": "^6.22.0",
"styled-components": "^6.1.8",
"universal-cookie": "^7.0.2",
"update-browserslist-db": "latest"
},
"devDependencies": {
2024-02-11 21:01:49 +01:00
"@formatjs/cli": "^6.2.7",
"@testing-library/cypress": "^10.0.1",
"@types/testing-library__cypress": "^5.0.13",
"@welldone-software/why-did-you-render": "^8.0.1",
"cypress": "^13.6.4",
"cypress-image-snapshot": "^4.0.1"
},
"publishConfig": {
"registry": "https://registry.npmjs.com"
2020-12-07 01:31:48 +01:00
}
2022-11-12 16:17:06 +01:00
}