-
Notifications
You must be signed in to change notification settings - Fork 28
/
package.json
47 lines (47 loc) · 1.42 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
{
"name": "janus-idp.io",
"version": "0.0.0",
"private": true,
"scripts": {
"preinstall": "npx only-allow pnpm",
"ci": "turbo run lint build test:unit test:e2e",
"build": "turbo run build",
"export": "turbo run export",
"dev": "turbo run dev --parallel",
"start": "turbo run start --parallel",
"test:unit": "turbo run test:unit --parallel",
"test:e2e": "turbo run test:e2e --parallel",
"lint": "turbo run lint",
"lint-staged": "lint-staged",
"prettier:check": "prettier --ignore-unknown --check .",
"prettier:fix": "prettier --ignore-unknown --write .",
"clean": "turbo run clean",
"tsc": "turbo run tsc",
"prepare": "husky install"
},
"devDependencies": {
"eslint-config-custom": "workspace:*",
"husky": "9.1.1",
"lint-staged": "15.2.7",
"prettier": "3.3.3",
"prettier-plugin-tailwindcss": "0.6.5",
"tsconfig": "workspace:*",
"turbo": "2.0.9"
},
"engines": {
"node": ">=18.0"
},
"lint-staged": {
"*": "turbo run prettier:fix --",
"packages/docusaurus-plugin-tailwind/**/*.{js,jsx,ts,tsx}": [
"cd packages/docusaurus-plugin-tailwind && eslint --ext .js,.jsx,.ts,.tsx --fix ."
],
"packages/ui/**/*.{js,jsx,ts,tsx}": [
"cd packages/ui && eslint --ext .js,.jsx,.ts,.tsx --fix ."
],
"apps/website/**/*.{js,jsx,ts,tsx}": [
"eslint --ext .js,.jsx,.ts,.tsx --fix ."
]
},
"packageManager": "[email protected]"
}