-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.39 KB
/
Copy pathpackage.json
File metadata and controls
84 lines (84 loc) · 2.39 KB
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
{
"name": "code-whisperer",
"version": "0.8.0",
"description": "Twitch Code Whisperer for Party Game Streamers",
"repository": {
"type": "git",
"url": "git+https://github.com/dcpesses/code-whisperer.git"
},
"keywords": [
"react",
"redux",
"vite",
"typescript",
"template",
"ghactions",
"vitest",
"twitch",
"oauth"
],
"author": "Daniel Pesses",
"license": "MIT",
"homepage": "https://github.com/dcpesses/code-whisperer",
"engines": {
"node": "^20.18.2 || >=22.0.0"
},
"scripts": {
"start": "vite",
"build": "tsc && vite build",
"build:ci": "tsc && vite build && cp 404.html dist/",
"test": "vitest run",
"test:all": "./tests/test.sh",
"test:watch": "vitest",
"test:ci": "vitest run --coverage",
"serve": "vite preview",
"prepare": "husky && rm -rf .git/hooks && ln -s ../.husky .git/hooks",
"lint": "eslint --cache --fix ."
},
"dependencies": {
"@reduxjs/toolkit": "^2.2.3",
"bootstrap": "^5.3.3",
"bootstrap-icons": "^1.11.3",
"query-string": "^9.0.0",
"react": "^19.0.0",
"react-bootstrap": "^2.10.9",
"react-dom": "^19.0.0",
"react-markdown": "^10.0.1",
"react-redux": "^9.1.0",
"react-router-dom": "^7.2.0",
"tmi.js": "^1.8.5"
},
"devDependencies": {
"@commitlint/cli": "^19.7.1",
"@commitlint/config-conventional": "^19.7.1",
"@commitlint/prompt-cli": "^19.7.1",
"@eslint/compat": "^1.2.6",
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.20.0",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.4.2",
"@testing-library/react": "^16.2.0",
"@testing-library/user-event": "^14.6.1",
"@types/node": "^22.13.5",
"@types/react": "^19.0.10",
"@types/react-dom": "^19.0.4",
"@typescript-eslint/eslint-plugin": "^8.24.1",
"@typescript-eslint/parser": "^8.24.1",
"@vitejs/plugin-react-swc": "^3.3.1",
"@vitest/coverage-v8": "^3.0.7",
"@vitest/eslint-plugin": "^1.1.36",
"eslint": "^9.20.1",
"eslint-plugin-react": "^7.34.1",
"eslint-plugin-react-hooks": "^5.1.0",
"eslint-plugin-testing-library": "^7.1.1",
"eslint-plugin-unused-imports": "^4.1.4",
"globals": "^16.0.0",
"happy-dom": "^17.1.1",
"husky": "^9.1.7",
"lint-staged": "^15.4.3",
"typescript": "^5.7.3",
"vite": "^6.2.0",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^3.0.7"
}
}