-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathpackage.json
42 lines (42 loc) · 1.34 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
{
"name": "file-transfer",
"version": "1.0.0",
"scripts": {
"dev:webrtc": "pnpm --filter @ft/webrtc run dev",
"build:webrtc": "pnpm --filter @ft/webrtc run build",
"deploy:webrtc": "pnpm --filter @ft/webrtc run deploy",
"dev:websocket": "pnpm --filter @ft/websocket run dev",
"build:websocket": "pnpm --filter @ft/websocket run build",
"deploy:websocket": "pnpm --filter @ft/websocket run deploy",
"lint:ts": "pnpm --filter '*' run lint:ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/WindrunnerMax/FileTransfer.git"
},
"keywords": [],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/WindrunnerMax/FileTransfer/issues"
},
"homepage": "https://github.com/WindrunnerMax/FileTransfer",
"devDependencies": {
"@types/node": "22.4.0",
"@typescript-eslint/eslint-plugin": "6.12.0",
"@typescript-eslint/parser": "6.12.0",
"eslint": "7.11.0",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-import": "2.25.3",
"eslint-plugin-prettier": "3.3.1",
"eslint-plugin-react": "7.27.0",
"eslint-plugin-react-hooks": "4.3.0",
"postcss": "8.3.3",
"prettier": "2.4.1",
"sass": "1.52.3",
"stylelint": "14.7.1",
"stylelint-config-sass-guidelines": "9.0.1",
"stylelint-config-standard": "25.0.0",
"typescript": "5.3.2"
}
}