wisemapping-frontend/package.json

65 lines
1.6 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",
"test:integration": "lerna run test:integration --stream"
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": {
"cypress": "^8.4.1",
2021-02-23 07:27:19 +01:00
"husky": "4",
2021-02-23 07:16:10 +01:00
"lerna": "^3.16.4",
2021-07-16 16:41:58 +02:00
"lint-staged": "^10.5.4"
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 02:25:45 +02:00
"node": ">16.10.0"
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",
"pre-push": "yarn lint && yarn test:unit"
}
},
"lint-staged": {
"**/*.{ts,tsx}": [
"prettier --write"
]
},
"eslintConfig": {
"rules": {
"implicit-arrow-linebreak": "off"
}
}
2021-12-18 21:49:22 +01:00
}