wisemapping-frontend/package.json

65 lines
1.6 KiB
JSON
Raw Normal View History

2020-11-26 19:03:24 -08:00
{
"name": "wisemapping-front-end",
2020-12-05 10:42:11 -08:00
"scripts": {
"bootstrap": "lerna bootstrap",
"build": "lerna run build",
"clean": "lerna clean && rm -rf node_modules",
2021-02-22 22:39:09 -08:00
"lint": "lerna run lint --stream",
"playground": "lerna run playground --stream",
"test": "lerna run test --stream",
"test:unit": "lerna run test:unit --stream",
"test:integration": "lerna run test:integration --stream"
2020-12-05 10:42:11 -08:00
},
2021-12-19 10:47:51 -08:00
"private": true,
2020-12-05 10:42:11 -08:00
"devDependencies": {
"cypress": "^8.4.1",
2021-02-22 22:27:19 -08:00
"husky": "4",
2021-02-22 22:16:10 -08:00
"lerna": "^3.16.4",
2021-07-16 11:41:58 -03:00
"lint-staged": "^10.5.4"
2020-12-05 10:42:11 -08:00
},
"workspaces": [
"packages/*"
],
"author": {
"name": "Paulo Veiga",
"login.email": "pveiga@wisemapping.com"
},
"contributors": [
"Ezequiel Bergamaschi"
],
"engines": {
2022-10-05 18:28:38 -07:00
"node": "16.*"
2020-12-05 10:42:11 -08: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 12:49:22 -08:00
"license": "https://wisemapping.atlassian.net/wiki/spaces/WS/pages/524357/WiseMapping+Public+License+Version+1.0+WPL",
2021-12-25 21:33:17 -08:00
"version": "0.4.0",
"husky": {
"hooks": {
"pre-commit": "lint-staged",
2022-10-31 15:28:39 -07:00
"pre-push": "yarn lint && yarn test"
}
},
"lint-staged": {
"**/*.{ts,tsx}": [
"prettier --write"
]
},
"eslintConfig": {
"rules": {
"implicit-arrow-linebreak": "off"
}
}
2021-12-18 12:49:22 -08:00
}