-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.12 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
{
"name": "space-invaders-arcade-emulator-tauri",
"private": false,
"version": "1.0.0",
"type": "module",
"author": "Quentin MOREL (Im-Rises)",
"license": "MIT",
"homepage": "https://im-rises.github.io/space-invaders-arcade-emulator-tauri/",
"description": "Space Invaders Arcade Emulator Tauri",
"repository": "https://github.com/Im-Rises/space-invaders-arcade-emulator-tauri",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"tauri": "tauri"
},
"dependencies": {
"@tauri-apps/api": "^1.4.0",
"eslint-config-xo-react": "^0.27.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"prop-types": "^15.8.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-toastify": "^9.1.3",
"sass": "^1.66.1",
"space-invaders-arcade-emulator": "^0.1.2",
"xo": "^0.56.0"
},
"devDependencies": {
"@tauri-apps/cli": "^1.4.0",
"@vitejs/plugin-react": "^4.0.3",
"eslint": ">=8.27.0",
"eslint-config-xo": "^0.43.1",
"vite": "^4.4.4"
},
"xo": {
"extends": "xo-react"
},
"main": "main.jsx"
}