forked from ct6502/apple2ts
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 2 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
{
"name": "apple2ts",
"private": true,
"version": "1.1.0",
"homepage": "https://apple2ts.com",
"type": "module",
"scripts": {
"predeploy": "npm run build",
"deploy": "gh-pages -d dist",
"start": "vite --open",
"host": "vite --open --host",
"build": "tsc && vite build",
"lint": "eslint . --report-unused-disable-directives --max-warnings 0",
"lint-fix": "eslint . --fix --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview",
"test": "jest"
},
"dependencies": {
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.0",
"@fortawesome/free-regular-svg-icons": "^6.7.2",
"@fortawesome/free-solid-svg-icons": "^6.7.2",
"@fortawesome/react-fontawesome": "^0.2.2",
"@googleworkspace/drive-picker-element": "^0.3.4",
"buffer": "^6.0.3",
"fflate": "^0.8.2",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-joyride": "^2.9.3"
},
"devDependencies": {
"@eslint/js": "^9.20.0",
"@stylistic/eslint-plugin-js": "^3.1.0",
"@types/audioworklet": "^0.0.65",
"@types/gapi.client.drive-v3": "^0.0.5",
"@types/google.accounts": "^0.0.15",
"@types/google.picker": "^0.0.49",
"@types/jest": "^29.5.14",
"@types/react": "^19.0.2",
"@types/react-dom": "^19.0.2",
"@types/react-fontawesome": "^1.6.8",
"@types/w3c-web-serial": "^1.0.7",
"@types/wicg-file-system-access": "^2023.10.5",
"@vitejs/plugin-react-swc": "^3.7.2",
"eslint": "^9.20.1",
"eslint-plugin-react": "^7.37.4",
"eslint-plugin-react-hooks": "^5.1.0",
"gh-pages": "^6.2.0",
"globals": "^15.15.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"ts-jest": "^29.2.5",
"typescript": "^5.7.2",
"typescript-eslint": "^8.24.0",
"vite": "^6.0.6"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}