forked from plone/volto
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.87 KB
/
package.json
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
{
"name": "plone-frontend",
"private": true,
"scripts": {
"preinstall": "npx only-allow pnpm",
"postinstall": "make setup",
"watch": "turbo run watch",
"build:deps": "turbo run build --filter @plone/registry --filter @plone/client",
"build:registry": "pnpm --filter @plone/registry run build",
"build": "pnpm build:deps && pnpm --filter @plone/volto build",
"start": "pnpm build:deps && pnpm --filter @plone/volto start",
"start:project": "pnpm --filter plone run start",
"lint": "pnpm build:deps && eslint --max-warnings=0 '{apps,packages}/**/*.{js,jsx,ts,tsx}'",
"lint:volto": "pnpm --filter @plone/volto run lint",
"test": "pnpm --filter @plone/volto run test:ci",
"i18n": "pnpm --filter @plone/volto run i18n",
"i18n:ci": "pnpm --filter @plone/volto i18n:ci",
"prettier": "prettier --check '{apps,packages}/**/*.{js,jsx,ts,tsx}'",
"prettier:fix": "prettier --write '{apps,packages}/**/*.{js,jsx,ts,tsx}' ",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"lint-staged": "lint-staged",
"prepare": "husky install",
"husky:uninstall": "husky uninstall",
"prereleaser": "node packages/scripts/preleaser.js"
},
"devDependencies": {
"@parcel/packager-ts": "2.10.3",
"@parcel/transformer-typescript-types": "2.10.3",
"@typescript-eslint/eslint-plugin": "^6.8.0",
"@typescript-eslint/parser": "^6.8.0",
"eslint": "^8.53.0",
"eslint-config-prettier": "9.0.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "2.28.1",
"eslint-plugin-prettier": "5.0.0",
"eslint-plugin-react": "7.33.2",
"husky": "^8.0.3",
"lint-staged": "15.0.2",
"prettier": "3.0.3",
"stylelint": "^15.11.0",
"tsconfig": "workspace:*",
"turbo": "latest",
"typescript": "5.2.2",
"vitest": "^0.34.6",
"yarnhook": "0.6.1"
},
"packageManager": "[email protected]"
}