-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
71 lines (71 loc) · 2.07 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
63
64
65
66
67
68
69
70
71
{
"name": "kelp",
"version": "2.0.0",
"description": "A slimy torrent downloader and syncing client",
"main": "./src/server.ts",
"scripts": {
"dev": "node --inspect --require ts-node/register .",
"build": "next build",
"start": "npm run build && NODE_ENV=production npx ts-node .",
"lint": "npx eslint . --ext .tsx,.ts,.jsx,.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zacimac/kelp.git"
},
"keywords": [
"torrent",
"streaming",
"syncing"
],
"author": "Zachary M",
"license": "MIT",
"bugs": {
"url": "https://github.com/zacimac/kelp/issues"
},
"homepage": "https://github.com/zacimac/kelp#readme",
"dependencies": {
"@emotion/react": "^11.9.3",
"@fortawesome/fontawesome-free": "^6.1.2",
"@fortawesome/fontawesome-svg-core": "^6.2.0",
"@fortawesome/free-regular-svg-icons": "^6.2.0",
"@fortawesome/free-solid-svg-icons": "^6.1.2",
"@fortawesome/react-fontawesome": "^0.2.0",
"@mantine/core": "^5.1.1",
"@mantine/hooks": "^5.1.1",
"@mui/icons-material": "^5.6.2",
"@mui/material": "^5.6.4",
"@tabler/icons": "^1.78.1",
"@types/express": "^4.17.13",
"@types/webtorrent": "^0.109.3",
"axios": "^0.27.2",
"ci": "^2.2.0",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"fs-extra": "^10.1.0",
"moment": "^2.29.4",
"next": "^12.2.5",
"notistack": "^2.0.4",
"react": "^17.0.2",
"react-cookie": "^4.1.1",
"react-dom": "^17.0.2",
"react-player": "^2.10.1",
"react-virtuoso": "^2.16.6",
"socket.io": "^4.5.0",
"socket.io-client": "^4.5.0",
"ts-node": "^10.9.1",
"webtorrent": "^1.8.16"
},
"devDependencies": {
"@types/react": "^18.0.9",
"@types/react-virtualized": "^9.21.21",
"@types/react-virtualized-auto-sizer": "^1.0.1",
"@types/react-window": "^1.8.5",
"@types/react-window-infinite-loader": "^1.0.6",
"@typescript-eslint/eslint-plugin": "^5.22.0",
"@typescript-eslint/parser": "^5.22.0",
"eslint": "^8.15.0",
"eslint-plugin-react": "^7.29.4",
"typescript": "^4.6.4"
}
}