-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.04 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
{
"name": "spooky-cookie",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite --host",
"typecheck": "tsc --noEmit",
"build": "npm run lint && tsc && vite build",
"lint": "eslint src --ext ts,tsx --report-unused-disable-directives",
"preview": "vite preview",
"test": "vitest"
},
"dependencies": {
"howler": "^2.2.4",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-swipeable": "^7.0.1",
"rune-games-sdk": "^4.15.1"
},
"devDependencies": {
"@types/howler": "^2.2.10",
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"@typescript-eslint/eslint-plugin": "^5.57.1",
"@typescript-eslint/parser": "^5.57.1",
"@vitejs/plugin-react": "^4.0.0",
"eslint": "7.22.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.3.4",
"eslint-plugin-rune": "^0.2.0",
"typescript": "^5.0.2",
"vite": "^4.3.2",
"vite-plugin-qrcode": "^0.2.2",
"vite-plugin-rune": "^0.1.1",
"vitest": "^0.34.6"
}
}