wisemapping-frontend/package.json

56 lines
1.4 KiB
JSON
Raw Normal View History

2020-11-27 04:03:24 +01:00
{
2020-12-05 19:42:11 +01:00
"name": "wisemapping-react",
"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",
"test": "lerna run test --stream"
2020-12-05 19:42:11 +01:00
},
"private": true,
"devDependencies": {
2021-02-23 07:27:19 +01:00
"husky": "4",
2021-02-23 07:16:10 +01:00
"lerna": "^3.16.4",
2021-02-23 07:27:19 +01:00
"lint-staged": "^10.5.4",
2021-02-23 07:16:10 +01:00
"prettier": "^2.2.1"
2020-12-05 19:42:11 +01:00
},
"workspaces": [
"packages/*"
],
"author": {
"name": "Paulo Veiga",
"login.email": "pveiga@wisemapping.com"
},
"contributors": [
"Ezequiel Bergamaschi"
],
"engines": {
"node": "=14.15.4"
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-02-23 07:16:10 +01:00
"license": "https://wisemapping.atlassian.net/wiki/spaces/WS/pages/524357/WiseMapping+Public+License+Version+1.0+WPL",
2021-02-23 07:27:19 +01:00
"husky": {
"hooks": {
2021-02-23 07:40:09 +01:00
"pre-commit": "lint-staged",
"pre-push": "yarn lint && yarn test"
2021-02-23 07:27:19 +01:00
}
},
"lint-staged": {
"**/*.{ts,tsx}": [
"prettier --write"
]
2021-02-23 07:16:10 +01:00
}
2021-02-17 04:47:09 +01:00
}