forked from goodcodeus/app-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
81 lines (81 loc) · 2.48 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "starter",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"start": "vite",
"build": "vite build",
"preview": "vite preview",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"test": "vitest",
"coverage": "vitest run --coverage",
"lint": "npx eslint --ext js,ts,tsx",
"lint:fix": "npx eslint --ext js,ts,tsx --fix",
"prettier": "prettier --check 'src/**/*.{js,jsx,ts,tsx,json,md,graphql,gql}'",
"prettier:fix": "prettier --loglevel warn --write 'src/**/*.{js,jsx,ts,tsx,json,md,graphql,gql}'",
"format": "npm run prettier:fix && npm run lint:fix",
"prepare": "cd .. && husky install ui/.husky"
},
"dependencies": {
"@apollo/client": "^3.7.3",
"@hookform/resolvers": "^2.9.10",
"@sentry/browser": "^7.28.1",
"apollo-link-rest": "^0.9.0",
"classnames": "^2.3.2",
"date-fns": "^2.29.3",
"framer-motion": "^7.6.9",
"graphql": "^16.6.0",
"graphql-tag": "^2.12.6",
"nanoid": "^4.0.0",
"reablocks": "^3.0.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-error-boundary": "^3.1.4",
"react-helmet-async": "^1.3.0",
"react-hook-form": "^7.41.2",
"react-router-dom": "^6.6.1",
"react-use": "^17.4.0",
"yup": "^0.32.11"
},
"devDependencies": {
"@babel/core": "^7.20.7",
"@storybook/addon-actions": "6.5.15",
"@storybook/addon-docs": "6.5.15",
"@storybook/addon-essentials": "6.5.15",
"@storybook/builder-vite": "^0.2.6",
"@storybook/react": "6.5.15",
"@types/react": "^18.0.26",
"@types/react-dom": "^18.0.10",
"@typescript-eslint/eslint-plugin": "^5.47.1",
"@typescript-eslint/parser": "^5.47.1",
"@vitejs/plugin-react": "^3.0.0",
"autoprefixer": "^10.4.13",
"babel-loader": "^9.1.0",
"eslint": "^8.30.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-react": "^7.31.11",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^8.0.2",
"lint-staged": "^13.1.0",
"postcss-nested": "^6.0.0",
"postcss-preset-env": "^7.8.3",
"prettier": "^2.8.1",
"typescript": "^4.9.4",
"vite": "^4.0.3",
"vite-plugin-checker": "^0.5.3",
"vite-plugin-eslint": "^1.8.1",
"vite-plugin-svgr": "^2.4.0",
"vite-tsconfig-paths": "^4.0.3",
"vitest": "^0.26.2"
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx}": [
"eslint --ext js,ts,tsx --fix"
],
"src/**/*.{js,jsx,ts,tsx,json,md,graphql,gql}": [
"prettier --write "
]
}
}