-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 2.02 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 2.02 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
{
"name": "@wentthefox/beat-saber-overlay",
"version": "1.0.0",
"description": "WentTheFox's overlay for Beat Saber streaming",
"scripts": {
"lint:eslint": "eslint \"src/**/*.{ts,tsx}\" --max-warnings=0",
"lint:tsc": "tsc --noEmit",
"lint": "concurrently -p name npm:lint:*",
"start": "parcel src/*.html",
"build": "parcel build src/*.html",
"test": "jest --ci --randomize",
"test:watch": "jest --watch --randomize",
"prepare": "husky install"
},
"keywords": [],
"author": "WentTheFox <https://went.tf>",
"license": "MIT",
"devDependencies": {
"@parcel/transformer-sass": "^2.8.3",
"@types/intl-unofficial-duration-unit-format": "^3.1.0",
"@types/jest": "^29.4.0",
"@types/matter-js": "^0.19.6",
"@types/obs-studio": "^2.17.0",
"@types/react": "^18",
"@types/react-dom": "^18",
"@types/throttle-debounce": "^5.0.2",
"@types/tmi.js": "^1.8.3",
"@types/web-bluetooth": "^0.0.16",
"@typescript-eslint/eslint-plugin": "^6.7.5",
"@typescript-eslint/parser": "^6.7.5",
"buffer": "^5.7.1",
"classnames": "^2.3.2",
"concurrently": "^7.6.0",
"eslint": "^8.51.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^8.0.3",
"intl-unofficial-duration-unit-format": "^3.1.0",
"jest": "^29.5.0",
"jest-matcher-deep-close-to": "^3.0.2",
"jest-ts-webcompat-resolver": "^1.0.0",
"joi": "^17.7.0",
"parcel": "^2.8.3",
"parcel-transformer-url-loader": "^2.0.0",
"postcss": "^8.4.31",
"postcss-modules": "^4.3.1",
"process": "^0.11.10",
"react": "^18",
"react-dom": "^18",
"react-fast-marquee": "^1.6.0",
"react-lottie-player": "^1.5.4",
"react-use-websocket": "^4.3.1",
"sass": "^1.87.0",
"swr": "^2.2.4",
"timers-browserify": "^2.0.12",
"tmi.js": "^1.8.5",
"ts-jest": "^29.1.1",
"typescript": "^5.2.2"
},
"private": true,
"dependencies": {
"matter-js": "^0.19.0",
"socket.io-client": "^4.7.2",
"throttle-debounce": "^5.0.0"
}
}