-
-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
60 lines (60 loc) · 1.59 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
{
"name": "scratch-bonanza",
"version": "1.0.0",
"author": "Michael Kolesidis <[email protected]> (https://michaelkolesidis.com/)",
"license": "AGPL-3.0-or-later",
"description": "An online scratchcard game.",
"keywords": [
"react",
"animation",
"gambling",
"scratch",
"lottery",
"lottery-game",
"react-game",
"online-game",
"scratchcard",
"scratcher",
"gambling-game",
"scratch-off",
"scratchie",
"lottery-ticket",
"scratch-game",
"scratch-ticket",
"scratch-and-win",
"scratchcard-game",
"scratch-it",
"instant-lottery"
],
"repository": "https://github.com/michaelkolesidis/scratch-bonanza.git",
"homepage": "https://github.com/michaelkolesidis/scratch-bonanza/",
"type": "module",
"scripts": {
"dev": "vite --host",
"start": "vite --host",
"build": "tsc && vite build",
"lint": "eslint src --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview",
"test": "vitest"
},
"dependencies": {
"react": "18.3.1",
"react-dom": "18.3.1",
"react-router-dom": "^6.14.2",
"react-scratchcard-v2": "^1.1.1",
"zustand": "^4.4.0"
},
"devDependencies": {
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/eslint-plugin": "^7.16.0",
"@typescript-eslint/parser": "^7.16.0",
"@vitejs/plugin-react": "^4.3.1",
"eslint": "^9.7.0",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-react-refresh": "^0.4.8",
"jsdom": "^24.1.0",
"typescript": "^5.5.3",
"vite": "^5.3.3"
}
}