-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
48 lines (48 loc) · 1.32 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": "dx-playground",
"private": true,
"author": "DX Team",
"license": "MIT",
"scripts": {
"prepare": "husky install",
"build": "pnpm build -r",
"storybook": "start-storybook -p 6006",
"test": "pnpm test -r",
"lint": "pnpm lint -r --parrallel",
"ui": "pnpm --filter=@template/ui",
"nextjs": "pnpm --filter=@template/nextjs",
"vite": "pnpm --filter=@template/vite",
"format": "prettier --write '**/?(.)*.{css,scss,js,ts,tsx,json}'"
},
"devDependencies": {
"@babel/core": "7.16.0",
"@commitlint/cli": "15.0.0",
"@commitlint/config-conventional": "15.0.0",
"@storybook/addon-essentials": "6.3.12",
"@storybook/react": "6.3.12",
"@typescript-eslint/eslint-plugin": "5.4.0",
"@typescript-eslint/parser": "5.4.0",
"babel-loader": "8.2.3",
"concurrently": "6.4.0",
"eslint": "8.3.0",
"eslint-plugin-react": "7.27.1",
"husky": "7.0.4",
"lint-staged": "12.1.2",
"prettier": "2.5.0",
"prettier-plugin-organize-imports": "2.3.4",
"typescript": "4.5.2"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"**/*.{ts,tsx}": [
"eslint --fix"
],
"**/*.{js,jsx,ts,tsx,json}": [
"prettier --write --plugin=./node_modules/prettier-plugin-organize-imports"
]
}
}