-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
92 lines (92 loc) · 2.26 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
82
83
84
85
86
87
88
89
90
91
92
{
"name": "pixel2em",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"lint": "eslint --color .",
"prettier": "prettier --check .",
"prettier:fix": "prettier --write .",
"prepare": "husky install",
"clean": "rimraf node_modules && pnpm clean && pnpm install"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "npm test"
}
},
"dependencies": {
"@commitlint/config-conventional": "^17.4.4",
"@swc/cli": "^0.1.61",
"@swc/core": "^1.3.32",
"@tailwindcss/forms": "^0.5.3",
"css": "^3.0.0",
"cssnano": "^6.0.0",
"flowbite-react": "^0.4.2",
"lodash": "^4.17.21",
"moment": "^2.29.4",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-helmet-async": "^1.3.0",
"react-router-dom": "6.9.0",
"rimraf": "^4.4.1",
"vite-plugin-pwa": "^0.14.7"
},
"devDependencies": {
"@types/json-schema": "^7.0.11",
"@types/node": "^18.15.5",
"@types/react": "18.0.33",
"@types/react-dom": "18.0.11",
"@types/react-transition-group": "^4.4.5",
"@typescript-eslint/eslint-plugin": "5.56.0",
"@typescript-eslint/parser": "5.56.0",
"@vitejs/plugin-react": "3.1.0",
"@vitejs/plugin-react-swc": "^3.2.0",
"autoprefixer": "10.4.14",
"eslint": "8.36.0",
"husky": "^8.0.3",
"postcss": "8.4.21",
"prettier": "2.8.6",
"tailwindcss": "3.3.2",
"typescript": "5.0.2",
"vite": "4.2.1"
},
"eslintConfig": {
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/recommended",
"plugin:react-hooks/recommended",
"plugin:storybook/recommended"
],
"ignorePatterns": [
"/build",
"commitlint.config.js",
"config-overrides.js",
"lint-staged.js",
"postcss.config.js",
"tailwind.config.js"
],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaFeatures": {
"jsx": true
},
"project": [
"tsconfig.json",
"tsconfig.node.json"
]
},
"plugins": [
"@typescript-eslint",
"react-hooks"
],
"root": true,
"rules": {
"@typescript-eslint/consistent-type-imports": "warn"
}
}
}