2016-06-29 10:27:04 +00:00
|
|
|
{
|
2020-05-08 10:04:00 +00:00
|
|
|
"name": "root",
|
|
|
|
"private": true,
|
2019-07-11 09:59:26 +00:00
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
2019-09-25 15:42:06 +00:00
|
|
|
"url": "https://github.com/betagouv/mon-entreprise.git"
|
2019-07-11 09:59:26 +00:00
|
|
|
},
|
|
|
|
"engines": {
|
2020-03-19 11:39:02 +00:00
|
|
|
"node": ">=12.16.1"
|
2019-07-11 09:59:26 +00:00
|
|
|
},
|
2021-12-03 11:38:16 +00:00
|
|
|
"workspaces": [
|
|
|
|
"modele-social",
|
|
|
|
"site"
|
|
|
|
],
|
2021-12-07 12:46:03 +00:00
|
|
|
"type": "module",
|
2020-05-08 10:04:00 +00:00
|
|
|
"scripts": {
|
2022-02-07 08:34:32 +00:00
|
|
|
"lint:eslintrc": "npx eslint-config-prettier .eslintrc.cjs",
|
|
|
|
"lint:eslint": "export NODE_OPTIONS='--max-old-space-size=4096'; eslint .",
|
2020-05-08 10:04:00 +00:00
|
|
|
"lint:eslint:fix": "yarn lint:eslint --fix",
|
2021-07-01 16:25:50 +00:00
|
|
|
"lint:prettier": "yarn run prettier --check \"**/*.{js,jsx,ts,tsx,yaml,yml}\"",
|
2020-05-08 10:04:00 +00:00
|
|
|
"lint:prettier:fix": "yarn lint:prettier --write",
|
|
|
|
"lint:fix": "yarn lint:eslint:fix && yarn lint:prettier:fix",
|
2020-05-18 14:43:29 +00:00
|
|
|
"prepare": "if [ -z \"$NETLIFY\" ]; then yarn workspaces run prepare; fi",
|
2020-05-08 10:04:00 +00:00
|
|
|
"lint": "yarn lint:eslintrc && yarn lint:eslint && yarn lint:prettier",
|
|
|
|
"test": "yarn workspaces run test",
|
2021-12-02 13:19:35 +00:00
|
|
|
"test:type": "yarn workspaces run tsc --skipLibCheck --noEmit",
|
2020-12-17 09:30:52 +00:00
|
|
|
"clean": "yarn workspaces run clean && rimraf node_modules",
|
2021-12-02 11:39:03 +00:00
|
|
|
"start": "yarn workspace site start",
|
2022-02-09 09:26:56 +00:00
|
|
|
"moso:up": "yarn workspace modele-social run up && yarn workspace site upgrade modele-social",
|
|
|
|
"i18n:check": "yarn workspace site i18n:check",
|
|
|
|
"i18n:translate": "yarn workspace site i18n:translate"
|
2020-05-08 10:04:00 +00:00
|
|
|
},
|
2021-11-30 15:09:05 +00:00
|
|
|
"resolutions": {
|
|
|
|
"@mui/styled-engine": "npm:@mui/styled-engine-sc@latest"
|
|
|
|
}
|
2016-06-29 10:27:04 +00:00
|
|
|
}
|