-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
103 lines (103 loc) · 3.05 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
93
94
95
96
97
98
99
100
101
102
103
{
"name": "vite-redux-seed",
"version": "1.0.0",
"engines": {
"node": ">=18.17",
"pnpm": ">=3"
},
"private": true,
"type": "module",
"description": "Base React+Redux project with pre-configured static analysis",
"keywords": [
"react",
"redux",
"redux-toolkit",
"typescript",
"vite",
"template"
],
"homepage": ".",
"repository": "github:code-chimp/vite-redux-seed",
"license": "BSD-3-Clause",
"author": {
"name": "Tim Goshinski",
"email": "tim@code-chimp.com",
"url": "https://code-chimp.com"
},
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"format:check": "prettier --check .",
"format:fix": "prettier --write .",
"lint": "run-p lint:*",
"lint:ts": "eslint ./src/**/**.ts*",
"lint:styles": "stylelint \"./src/**/*.scss\"",
"fix:styles": "stylelint \"./src/**/*.scss\" --fix",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"prepare": "husky install"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.4.2",
"@fortawesome/free-brands-svg-icons": "^6.4.2",
"@fortawesome/free-regular-svg-icons": "^6.4.2",
"@fortawesome/free-solid-svg-icons": "^6.4.2",
"@fortawesome/react-fontawesome": "^0.2.0",
"@popperjs/core": "^2.11.8",
"@reduxjs/toolkit": "^1.9.5",
"bootstrap": "^5.3.1",
"react": "^18.2.0",
"react-bootstrap": "^2.8.0",
"react-dom": "^18.2.0",
"react-error-boundary": "^4.0.10",
"react-redux": "^8.1.2",
"react-router-dom": "^6.14.2",
"redux": "^4.2.1",
"redux-thunk": "^2.4.2",
"uuid": "^9.0.0"
},
"devDependencies": {
"@testing-library/dom": "^9.3.1",
"@testing-library/jest-dom": "^5.17.0",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.4.3",
"@types/bootstrap": "^5.2.6",
"@types/eslint": "^8.44.2",
"@types/eslint-config-prettier": "^6.11.0",
"@types/jsdom": "^21.1.1",
"@types/node": "^20.4.8",
"@types/prettier": "^2.7.3",
"@types/pretty-quick": "^3.1.2",
"@types/react": "^18.2.18",
"@types/react-dom": "^18.2.7",
"@types/redux-mock-store": "^1.0.3",
"@types/testing-library__jest-dom": "^5.14.9",
"@types/uuid": "^9.0.2",
"@typescript-eslint/eslint-plugin": "^6.2.1",
"@typescript-eslint/parser": "^6.2.1",
"@vitejs/plugin-react": "^4.0.4",
"@vitest/coverage-istanbul": "^0.34.1",
"browserslist": "^4.21.10",
"eslint": "^8.46.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.33.1",
"eslint-plugin-react-hooks": "^4.6.0",
"happy-dom": "^10.8.0",
"husky": "^8.0.3",
"jsdom": "^22.1.0",
"lint-staged": "^13.2.3",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.27",
"prettier": "^3.0.1",
"redux-mock-store": "^1.5.4",
"sass": "^1.64.2",
"stylelint": "^15.10.2",
"stylelint-config-recommended-scss": "^12.0.0",
"stylelint-scss": "^5.0.1",
"typescript": "^5.1.6",
"vite": "^4.4.8",
"vitest": "^0.34.1"
}
}