mon-entreprise/package.json

46 lines
1.6 KiB
JSON
Raw Normal View History

2016-06-29 10:27:04 +00:00
{
"name": "root",
"private": true,
"repository": {
"type": "git",
2019-09-25 15:42:06 +00:00
"url": "https://github.com/betagouv/mon-entreprise.git"
},
"engines": {
"node": ">=12.16.1"
},
"workspaces": [
"modele-social",
"exoneration-covid",
"site"
],
2021-12-07 12:46:03 +00:00
"type": "module",
"scripts": {
"lint:eslintrc": "npx eslint-config-prettier .eslintrc.cjs",
"lint:eslint": "NODE_OPTIONS='--max-old-space-size=4096' eslint .",
"lint:eslint:fix": "yarn lint:eslint --fix",
"lint:prettier": "yarn run prettier --check \"**/*.{js,jsx,ts,tsx,yaml,yml}\"",
"lint:prettier:fix": "yarn lint:prettier --write",
"lint:fix": "yarn lint:eslint:fix && yarn lint:prettier:fix",
"lint": "yarn lint:eslintrc && yarn lint:eslint && yarn lint:prettier",
"test": "yarn workspaces foreach run test",
"test:type": "yarn workspaces foreach -pi run tsc --skipLibCheck --noEmit",
"clean": "yarn workspaces foreach run clean && rimraf node_modules",
"start": "yarn workspaces foreach -pi run start",
"moso:up": "yarn workspace modele-social up && yarn workspace exoneration-covid up && yarn workspace site upgrade modele-social",
"i18n:check": "yarn workspace site i18n:check",
"i18n:translate": "yarn workspace site i18n:translate"
},
"resolutions": {
"prettier": "^2.5.1",
"@mui/styled-engine": "npm:@mui/styled-engine-sc@latest",
"publicodes": "portal:/home/johan/Projets/publicodes/packages/core",
"publicodes-react": "portal:/home/johan/Projets/publicodes/packages/react-ui"
},
"packageManager": "yarn@3.2.0",
"devDependencies": {
"eslint": "^8.10.0",
"prettier": "^2.5.1",
"rimraf": "^3.0.2"
}
2016-06-29 10:27:04 +00:00
}