-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.49 KB
/
Copy pathpackage.json
File metadata and controls
71 lines (71 loc) · 2.49 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "grotto-front",
"version": "1.0.0",
"description": "Grottocenter front monorepo",
"private": true,
"workspaces": [
"packages/*"
],
"repository": "git@github.com:GrottoCenter/grottocenter-front.git",
"author": "Wikicaves",
"license": "CC-BY-SA-3.0",
"scripts": {
"start": "yarn workspace @grotto-front/web-app start",
"build": "yarn workspace @grotto-front/web-app build",
"lint": "eslint --ext .js,.jsx,.ts,.tsx .",
"lint:fix": "eslint --fix --ext .js,.jsx,.ts,.tsx .",
"e2e:run": "yarn workspace @grotto-front/web-app e2e-run",
"e2e:open": "yarn workspace @grotto-front/web-app e2e",
"test": "yarn workspace @grotto-front/web-app test --watchAll=false",
"storybook": "yarn workspace @grotto-front/web-app storybook",
"outdated": "npx npm-check-updates",
"prepare": "husky",
"translations:update-en": "node scripts/translations/update-en.js && node scripts/translations/sort.js packages/web-app/public/lang/en.json",
"translations:sort": "node scripts/translations/sort.js",
"translations:check-sorted": "node scripts/translations/sort.js --check",
"translations:check-en": "node scripts/translations/update-en.js --check",
"translations:sync-with-en": "node scripts/translations/sync-with-en.js",
"translations:find-unused": "node scripts/translations/find-unused.js",
"translations:report": "node scripts/translations/completeness-report.js"
},
"devDependencies": {
"@commitlint/cli": "^20.5.0",
"@commitlint/config-conventional": "20.5.3",
"baseline-browser-mapping": "^2.10.34",
"cross-env": "10.1.0",
"eslint": "8.57.1",
"eslint-config-airbnb": "19.0.4",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-cypress": "^3.6.0",
"eslint-plugin-import": "2.32.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-prettier": "5.5.6",
"eslint-plugin-react": "7.37.5",
"eslint-plugin-react-hooks": "7.1.1",
"eslint-plugin-storybook": "^0.12.0",
"glob": "^13.0.6",
"html-entities": "^2.6.0",
"husky": "^9.1.7",
"lint-staged": "16.4.0",
"prettier": "3.8.3",
"typescript": "5.9.3"
},
"engines": {
"node": ">=18",
"yarn": "4.5.0"
},
"packageManager": "yarn@4.5.0",
"resolutions": {
"bfj": "^9.1.3",
"nth-check": "^2.1.1",
"serialize-javascript": "^7.0.3"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --cache --fix"
],
"packages/web-app/public/lang/*.json": [
"node scripts/translations/sort.js"
]
}
}