wisemapping-frontend/package.json

101 lines
3.0 KiB
JSON
Raw Normal View History

2020-11-27 04:03:24 +01:00
{
"name": "wisemapping-front-end",
2020-12-05 19:42:11 +01:00
"scripts": {
"bootstrap": "lerna bootstrap",
"build": "lerna run build",
"clean": "lerna clean && rm -rf node_modules",
2021-02-23 07:39:09 +01:00
"lint": "lerna run lint --stream",
"playground": "lerna run playground --stream",
"test": "lerna run test --stream",
"test:unit": "lerna run test:unit --stream",
2023-01-14 08:08:01 +01:00
"test:integration": "lerna run test:integration --stream",
"prepare": "husky install"
2020-12-05 19:42:11 +01:00
},
2021-12-19 19:47:51 +01:00
"private": true,
2020-12-05 19:42:11 +01:00
"devDependencies": {
2023-01-09 04:06:44 +01:00
"@babel/core": "^7.20.12",
"@babel/preset-env": "^7.14.7",
"@babel/preset-typescript": "^7.16.5",
"@babel/register": "^7.16.0",
"@formatjs/cli": "^5.1.3",
"@types/jest": "^29.0.5",
2023-01-09 04:06:44 +01:00
"@typescript-eslint/eslint-plugin": "^5.48.0 ",
"@typescript-eslint/parser": "^5.48.0",
"babel-loader": "^9.1.2",
"copy-webpack-plugin": "^10.2.4",
"css-loader": "^6.7.3",
2023-01-09 04:06:44 +01:00
"eslint": "^8.4.1",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard": "^17.0.0",
"eslint-nibble": "^8.0.0",
"eslint-plugin-cypress": "^2.12.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-react": "^7.31.10",
"eslint-plugin-react-hooks": "^4.6.0",
2023-01-15 18:14:56 +01:00
"html-webpack-plugin": "^5.3.2",
2023-01-14 08:08:01 +01:00
"husky": "^8.0.0",
"jest": "^29.3.1",
"jest-diff": "^29.3.1",
"jest-environment-jsdom": "^29.3.1",
"jest-webpack": "^0.5.1",
2021-02-23 07:16:10 +01:00
"lerna": "^3.16.4",
2023-01-09 04:06:44 +01:00
"lint-staged": "^10.5.4",
2023-01-09 04:17:16 +01:00
"prettier": "^2.7.1",
2023-01-15 18:14:56 +01:00
"start-server-and-test": "^1.14.0",
"style-loader": "^3.3.1",
"ts-jest": "^29.0.5",
"ts-loader": "^9.4.2",
"ts-node": "^10.9.1",
2023-01-09 04:06:44 +01:00
"typescript": "^4.8.4",
2023-01-15 18:14:56 +01:00
"webpack": "^5.75.0",
"webpack-bundle-analyzer": "^4.5.0",
"webpack-cli": "^5.0.1",
"webpack-dev-server": "^4.11.1"
2020-12-05 19:42:11 +01:00
},
"workspaces": [
"packages/*"
],
"author": {
"name": "Paulo Veiga",
"login.email": "pveiga@wisemapping.com"
},
"contributors": [
"Ezequiel Bergamaschi"
],
"engines": {
2022-10-06 03:28:38 +02:00
"node": "16.*"
2020-12-05 19:42:11 +01:00
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"homepage": "http://localhost:8080/react",
2021-12-18 21:49:22 +01:00
"license": "https://wisemapping.atlassian.net/wiki/spaces/WS/pages/524357/WiseMapping+Public+License+Version+1.0+WPL",
2021-12-26 06:33:17 +01:00
"version": "0.4.0",
"husky": {
"hooks": {
"pre-commit": "lint-staged",
2022-10-31 23:28:39 +01:00
"pre-push": "yarn lint && yarn test"
}
},
"lint-staged": {
"**/*.{ts,tsx}": [
"prettier --write"
]
},
"eslintConfig": {
2023-01-05 03:17:01 +01:00
"rules": {
"implicit-arrow-linebreak": "off"
}
}
2021-12-18 21:49:22 +01:00
}