-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
41 lines (41 loc) Β· 1.07 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
{
"name": "confeti",
"private": true,
"scripts": {
"preinstall": "npx only-allow pnpm",
"build": "turbo build",
"dev": "turbo dev",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx --cache --fix",
"lint:staged": "lint-staged",
"prepare": "husky",
"build-storybook": "pnpm --filter @confeti/design-system run build-storybook"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix --cache",
"prettier --write"
],
"**/*": "prettier --write --ignore-unknown"
},
"devDependencies": {
"eslint": "^8.57.0",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"prettier": "^3.2.5",
"turbo": "^2.1.3",
"typescript": "^5.4.5"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=20"
},
"dependencies": {
"@typescript-eslint/eslint-plugin": "^7.1.0",
"@typescript-eslint/parser": "^7.1.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.37.3",
"eslint-plugin-react-hooks": "^5.1.0",
"eslint-plugin-react-refresh": "^0.4.16"
}
}