-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.62 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
49
50
51
{
"name": "shared",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"format:check": "prettier --check src/**/*.{js,ts,tsx}",
"format": "prettier --write src/**/*.{js,ts,tsx}",
"lint:check": "eslint . --ext .ts,.tsx",
"lint": "eslint . --ext .ts,.tsx --fix",
"tsc": "tsc --project tsconfig.json",
"prepush": "yarn run format:check && yarn run tsc && yarn run lint:check",
"prepush:fix": "yarn run format && yarn run tsc && yarn run lint",
"prettier": "npx prettier --write .",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"test": "vitest",
"coverage": "vitest run --coverage",
"prepare": "husky install"
},
"devDependencies": {
"@storybook/addon-essentials": "^7.4.1",
"@storybook/addon-interactions": "^7.4.1",
"@storybook/addon-links": "^7.4.1",
"@storybook/addon-onboarding": "^1.0.8",
"@storybook/blocks": "^7.4.1",
"@storybook/react": "^7.4.1",
"@storybook/react-vite": "^7.4.1",
"@storybook/testing-library": "^0.2.0",
"@typescript-eslint/eslint-plugin": "^6.7.0",
"@typescript-eslint/parser": "^6.7.0",
"eslint": "^8.49.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-react": "^7.33.2",
"husky": "^8.0.0",
"lint-staged": "^14.0.1",
"prettier": "^3.0.3",
"prop-types": "^15.8.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"storybook": "^7.4.1",
"typescript": "^5.2.2",
"vite": "^4.4.9",
"vite-dts": "^1.0.4",
"vitest": "^0.34.4"
},
"resolutions": {
"jackspeak": "2.1.1"
}
}