This repository has been archived by the owner on Jun 27, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 2.1 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
{
"name": "vital",
"version": "1.0.0",
"description": "Starter template for Vite with React (TypeScript). Supports Tailwind with CSS-Modules. Jest and @react/testing-library configured and ready to go. Also ESLint, Prettier, Husky, Commit-lint and Atomic Design for components.",
"homepage": "https://github.com/jvidalv/vital#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/jvidalv/vital.git"
},
"author": "Josep Vidal <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/jvidalv/vital/issues"
},
"keywords": [
"react",
"vite",
"typescript",
"jest",
"tailwind",
"template",
"starter",
"css-modules",
"eslint",
"prettier",
"husky",
"commit-lint"
],
"browserslist": [
">0.2%",
"not dead",
"not IE 11"
],
"engines": {
"node": ">=14",
"yarn": ">=1.22.5"
},
"scripts": {
"start": "vite",
"build": "vite build",
"test": "jest",
"postinstall": "husky install"
},
"dependencies": {
"@heroicons/react": "2.0.13",
"@types/react-dom": "^18.2.7",
"react": "18.2.0",
"react-aria-components": "1.0.0-alpha.6",
"react-dom": "18.2.0"
},
"devDependencies": {
"@commitlint/cli": "17.4.2",
"@commitlint/config-conventional": "17.4.2",
"@tailwindcss/forms": "0.5.3",
"@testing-library/jest-dom": "5.16.5",
"@testing-library/react": "13.4.0",
"@types/jest": "29.2.5",
"@types/node": "18.11.18",
"@types/react": "18.0.26",
"@typescript-eslint/eslint-plugin": "5.48.1",
"@typescript-eslint/parser": "5.48.1",
"autoprefixer": "10.4.13",
"eslint": "8.31.0",
"eslint-plugin-import": "2.27.4",
"eslint-plugin-react": "7.32.0",
"eslint-plugin-react-hooks": "4.6.0",
"husky": "8.0.3",
"identity-obj-proxy": "3.0.0",
"jest": "29.3.1",
"jest-environment-jsdom": "29.3.1",
"lint-staged": "13.1.0",
"postcss": "8.4.21",
"prettier": "2.8.2",
"tailwindcss": "3.2.4",
"ts-jest": "29.0.5",
"typescript": "4.9.4",
"vite": "4.0.4",
"vite-preset-react": "2.3.0"
}
}