forked from uchihamalolan/vite-react-ts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 2.18 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
{
"name": "vite-react-ts",
"version": "0.0.0",
"description": "React Typescript Starter Template with Vite",
"repository": {
"type": "git",
"url": "git+https://github.com/amjed-ali-k/vite-react-ts.git"
},
"keywords": [
"vite",
"react",
"starter",
"template"
],
"author": "Amjed Ali K <[email protected]> (https://amjed_k.t.me)",
"license": "MIT",
"homepage": "https://github.com/amjed-ali-k/vite-react-ts",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"test": "jest",
"serve": "vite preview",
"prepare": "husky install",
"commit": "commit",
"format": "prettier --write --ignore-unknown .",
"lint": "eslint --cache ./src"
},
"dependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-error-boundary": "^3.1.4",
"vite-plugin-svgr": "2.2.2"
},
"devDependencies": {
"@commitlint/cli": "^17.3.0",
"@commitlint/config-conventional": "^17.3.0",
"@commitlint/prompt-cli": "^17.3.0",
"@testing-library/dom": "^8.19.0",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^14.4.3",
"@types/jest": "^29.2.4",
"@types/node": "^18.11.15",
"@types/react": "^18.0.26",
"@types/react-dom": "^18.0.9",
"@typescript-eslint/eslint-plugin": "^5.46.1",
"@typescript-eslint/parser": "^5.46.1",
"@vitejs/plugin-react": "^3.0.0",
"autoprefixer": "^10.4.13",
"eslint": "^8.29.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^3.5.2",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^27.1.7",
"eslint-plugin-jest-dom": "^4.0.3",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-react": "^7.31.11",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-testing-library": "^5.9.1",
"husky": "^8.0.2",
"jest": "29.3.1",
"jest-environment-jsdom": "^29.3.1",
"lint-staged": "^13.1.0",
"postcss": "^8.4.20",
"prettier": "2.8.1",
"react-test-renderer": "^18.2.0",
"tailwindcss": "^3.2.4",
"ts-jest": "29.0.3",
"typescript": "^4.9.4",
"vite": "^4.0.1",
"vite-tsconfig-paths": "^4.0.3"
}
}