-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 2.37 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
{
"name": "playm64.net",
"version": "0.1.0",
"private": true,
"license": "GPL-2.0",
"scripts": {
"clean": "rm -rf public/dist",
"mkdirs": "mkdir -p public/dist",
"copy-dependencies": "cp -r ./node_modules/mupen64plus-web/bin/web/index* ./node_modules/mupen64plus-web/bin/web/mupen64plus.json ./node_modules/mupen64plus-web/bin/web/data/InputAutoCfg.ini ./public/dist",
"dev": "npm run mkdirs && npm run copy-dependencies && vite --force",
"build": "npm run mkdirs && npm run copy-dependencies && tsc && vite build",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.5.2",
"@fortawesome/free-solid-svg-icons": "^6.5.2",
"@fortawesome/react-fontawesome": "^0.2.0",
"@originjs/vite-plugin-commonjs": "^1.0.3",
"axios": "^1.6.8",
"jszip": "^3.10.1",
"mupen64plus-web": "2.0.0",
"nipplejs": "^0.10.1",
"react": "^18.2.0",
"react-bootstrap": "^2.10.2",
"react-copy-to-clipboard": "^5.1.0",
"react-device-detect": "^2.2.3",
"react-dnd": "^16.0.1",
"react-dnd-html5-backend": "^16.0.1",
"react-dom": "^18.2.0",
"react-dropzone": "^14.2.3",
"react-fontawesome": "^1.7.1",
"react-modal": "^3.16.1",
"react-redux": "^9.1.0",
"react-router": "^5.3.4",
"react-router-dom": "^5.3.4",
"recaptcha-v3": "^1.10.0",
"redux-thunk": "^3.1.0",
"spark-md5": "^3.0.2",
"stats.js": "^0.17.0",
"web-vitals": "^3.5.2"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/pako": "^2.0.3",
"@types/react": "^18.2.66",
"@types/react-copy-to-clipboard": "^5.0.7",
"@types/react-dom": "^18.2.22",
"@types/react-modal": "^3.16.3",
"@types/react-router-dom": "^5.3.3",
"@types/spark-md5": "^3.0.4",
"@types/stats.js": "^0.17.3",
"@typescript-eslint/eslint-plugin": "^7.2.0",
"@typescript-eslint/parser": "^7.2.0",
"@vitejs/plugin-react": "^4.2.1",
"eslint": "^8.57.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.6",
"typescript": "^5.2.2",
"vite": "^5.2.0"
}
}