-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.89 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
{
"name": "vite-react-ts-gh",
"version": "1.0.0",
"description": "React + Redux + TypeScript + Vite + Github Actions starter template",
"repository": {
"type": "git",
"url": "git+https://github.com/dcpesses/vite-react-ts-gh.git"
},
"keywords": [
"react",
"redux",
"vite",
"typescript",
"template",
"ghactions",
"vitest"
],
"author": "Daniel Pesses",
"license": "MIT",
"homepage": "https://github.com/dcpesses/vite-react-ts-gh",
"scripts": {
"start": "vite",
"build": "tsc && vite build",
"build:ci": "tsc && vite build && cp 404.html dist/",
"test": "vitest run",
"test:watch": "vitest",
"test:ci": "vitest run --coverage",
"serve": "vite preview",
"prepare": "husky install && rm -rf .git/hooks && ln -s ../.husky .git/hooks",
"lint": "eslint --cache --fix ."
},
"dependencies": {
"@reduxjs/toolkit": "^2.2.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-redux": "^9.1.0",
"react-router-dom": "^6.22.2"
},
"devDependencies": {
"@commitlint/cli": "^19.0.3",
"@commitlint/config-conventional": "^19.0.3",
"@commitlint/prompt-cli": "^19.0.3",
"@testing-library/jest-dom": "^6.4.2",
"@testing-library/react": "^14.0.0",
"@types/node": "^18.19.20",
"@types/react": "^18.2.60",
"@types/react-dom": "^18.2.2",
"@typescript-eslint/eslint-plugin": "^7.1.0",
"@typescript-eslint/parser": "^7.1.0",
"@vitejs/plugin-react-swc": "^3.3.0",
"@vitest/coverage-v8": "^0.34.6",
"eslint": "^8.57.0",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-testing-library": "^6.2.0",
"eslint-plugin-unused-imports": "^3.1.0",
"happy-dom": "^13.6.2",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"typescript": "^5.0.4",
"vite": "^4.3.4",
"vite-tsconfig-paths": "^4.2.0",
"vitest": "^0.34.1"
}
}