2020-11-27 04:03:24 +01:00
|
|
|
{
|
2021-12-29 19:10:35 +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",
|
2021-12-20 21:54:31 +01:00
|
|
|
"playground": "lerna run playground --stream",
|
2021-12-02 01:41:56 +01:00
|
|
|
"test": "lerna run test --stream",
|
2021-12-17 03:13:54 +01:00
|
|
|
"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",
|
|
|
|
"@typescript-eslint/eslint-plugin": "^5.48.0 ",
|
|
|
|
"@typescript-eslint/parser": "^5.48.0",
|
|
|
|
"babel-loader": "^9.1.2",
|
|
|
|
"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-14 08:08:01 +01:00
|
|
|
"husky": "^8.0.0",
|
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-09 04:06:44 +01:00
|
|
|
"typescript": "^4.8.4",
|
|
|
|
"webpack": "^5.75.0"
|
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",
|
2022-07-09 03:34:52 +02:00
|
|
|
"husky": {
|
|
|
|
"hooks": {
|
|
|
|
"pre-commit": "lint-staged",
|
2022-10-31 23:28:39 +01:00
|
|
|
"pre-push": "yarn lint && yarn test"
|
2022-07-09 03:34:52 +02:00
|
|
|
}
|
|
|
|
},
|
|
|
|
"lint-staged": {
|
|
|
|
"**/*.{ts,tsx}": [
|
|
|
|
"prettier --write"
|
|
|
|
]
|
|
|
|
},
|
|
|
|
"eslintConfig": {
|
2023-01-05 03:17:01 +01:00
|
|
|
"rules": {
|
|
|
|
"implicit-arrow-linebreak": "off"
|
|
|
|
}
|
2022-07-09 03:34:52 +02:00
|
|
|
}
|
2021-12-18 21:49:22 +01:00
|
|
|
}
|