-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.84 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
{
"name": "siren-chorus",
"private": true,
"license": "MIT",
"version": "0.0.1",
"scripts": {
"build": "NODE_ENV=production rm -rf dist/ && parcel build --dist-dir dist src/index.html",
"dev": "WS_PORT=4444 parcel --no-autoinstall src/index.html",
"typecheck": "tsc --noEmit",
"lint": "eslint src",
"fmt": "prettier --ignore-unknown --write --ignore-path .gitignore .",
"fmt-check": "prettier --ignore-unknown --list-different --ignore-path .gitignore .",
"ws-server": "PORT=4444 y-websocket",
"rtc-server": "PORT=4444 node_modules/y-webrtc/bin/server.js"
},
"dependencies": {
"@codemirror/autocomplete": "^6.11.0",
"@codemirror/commands": "^6.3.0",
"@codemirror/language": "^6.9.2",
"@codemirror/lint": "^6.4.2",
"@codemirror/search": "^6.5.4",
"@codemirror/state": "^6.3.1",
"@codemirror/view": "^6.22.0",
"@panzoom/panzoom": "^4.5.1",
"bootstrap": "^5.3.2",
"classnames": "^2.3.2",
"codemirror-lang-mermaid": "^0.5.0",
"mermaid": "^10.6.1",
"preact": "^10.19.2",
"process": "^0.11.10",
"unique-names-generator": "^4.7.1",
"y-codemirror.next": "^0.3.2",
"y-webrtc": "^10.2.6",
"y-websocket": "^1.5.0",
"yjs": "^13.6.10"
},
"devDependencies": {
"@parcel/transformer-sass": "2.10.3",
"@types/bootstrap": "^5.2.10",
"@types/d3": "^7.4.3",
"@types/dompurify": "^3.0.5",
"@types/node": "^20.9.4",
"@typescript-eslint/eslint-plugin": "^6.12.0",
"@typescript-eslint/parser": "^6.12.0",
"bun-types": "^1.0.13",
"eslint": "^8.54.0",
"eslint-config-prettier": "^9.0.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"parcel": "^2.10.3",
"prettier": "^3.1.0",
"typescript": "<=5.2"
}
}