-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
46 lines (46 loc) · 1.23 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
{
"name": "partycore",
"private": true,
"description": "140bpm multiplayer sequencer",
"sideEffects": false,
"type": "module",
"scripts": {
"build": "rimraf build && rimraf public/build && remix build",
"check": "tsc --noEmit",
"deploy": "npm run build && partykit deploy --with-vars",
"dev": "remix dev --manual -c \"npm start\" --port 8002",
"start": "partykit dev"
},
"dependencies": {
"@msgpack/msgpack": "^3.0.0-beta2",
"@remix-run/css-bundle": "^2.3.0",
"@remix-run/react": "^2.3.0",
"@syncedstore/core": "^0.6.0",
"@syncedstore/react": "^0.6.0",
"fathom-client": "^3.6.0",
"isbot": "^3.7.1",
"partymix": "^0.0.7",
"partysocket": "0.0.16",
"react": "^18.2.0",
"react-confetti": "^6.1.0",
"react-dom": "^18.2.0",
"tone": "^14.7.77",
"y-partykit": "^0.0.0-d53203d",
"zod": "^3.22.4",
"zustand": "^4.4.7"
},
"devDependencies": {
"@remix-run/dev": "^2.3.0",
"@remix-run/eslint-config": "^2.3.0",
"@types/react": "^18.2.38",
"@types/react-dom": "^18.2.16",
"concurrently": "^8.2.2",
"eslint": "^8.54.0",
"partykit": "^0.0.39",
"rimraf": "^5.0.5",
"typescript": "^5.3.2"
},
"engines": {
"node": ">=18.17.1"
}
}