forked from Feverqwe/Transmission
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 3.23 KB
/
package.json
File metadata and controls
90 lines (90 loc) · 3.23 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "transmission-easy-client",
"version": "3.2.1",
"sideEffects": [
"*.css",
"*.scss",
"*.sass"
],
"scripts": {
"watch": "cross-env BROWSER=chrome webpack --mode development --watch",
"watch:firefox": "cross-env BROWSER=firefox webpack --mode development --watch",
"build": "cross-env BROWSER=chrome webpack --mode production",
"build:firefox": "cross-env BROWSER=firefox webpack --mode production",
"build:opera": "cross-env BROWSER=opera webpack --mode production",
"type-check": "tsc --noEmit",
"lint": "eslint src/",
"lint:fix": "eslint src/ --fix",
"format": "prettier --write \"src/**/*.{ts,tsx}\"",
"format:check": "prettier --check \"src/**/*.{ts,tsx}\"",
"_compress": "node ./builder/compressDist",
"_compressSource": "node ./builder/compressSource",
"_releaseCh": "npm run type-check && npm run build && npm run _compress -- --BROWSER chrome",
"_releaseFf": "npm run type-check && npm run build:firefox && npm run _compress -- --BROWSER firefox && npm run _compressSource -- --BROWSER firefox",
"_releaseOp": "npm run type-check && npm run build:opera && npm run _compress -- --BROWSER opera && npm run _compressSource -- --BROWSER opera",
"release": "npm run _releaseCh && npm run _releaseFf && npm run _releaseOp",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"prepare": "husky"
},
"dependencies": {
"@radix-ui/react-context-menu": "^2.2.16",
"escape-string-regexp": "^5.0.0",
"filesize": "^11.0.13",
"mobx": "^6.15.0",
"mobx-react": "^9.2.1",
"mobx-state-tree": "^7.0.2",
"promise-limit": "^2.7.0",
"rc-select": "^14.16.8",
"react": "^19.2.4",
"react-colorful": "^5.6.1",
"react-dom": "^19.2.4",
"react-router-dom": "^7.13.0",
"react-tiny-popover": "^8.1.6",
"serialize-error": "^13.0.1",
"whatwg-fetch": "^3.6.20"
},
"devDependencies": {
"@babel/core": "^7.29.0",
"@babel/plugin-proposal-decorators": "^7.29.0",
"@babel/preset-env": "^7.29.0",
"@babel/preset-react": "^7.28.5",
"@babel/preset-typescript": "^7.28.5",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.3.0",
"@types/chrome": "^0.1.36",
"@types/node": "^25.2.0",
"@types/react": "^19.2.13",
"@types/react-dom": "^19.2.3",
"@typescript-eslint/eslint-plugin": "^8.54.0",
"@typescript-eslint/parser": "^8.54.0",
"archiver": "^7.0.1",
"babel-loader": "^10.0.0",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^14.0.0",
"cross-env": "^10.1.0",
"css-loader": "^7.1.3",
"css-minimizer-webpack-plugin": "^8.0.0",
"eslint": "^9.39.2",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"html-webpack-plugin": "^5.6.6",
"husky": "^9.1.7",
"jsdom": "^26.1.0",
"lint-staged": "^15.5.1",
"mini-css-extract-plugin": "^2.10.0",
"path-browserify": "^1.0.1",
"prettier": "^3.8.1",
"process": "^0.11.10",
"querystring-es3": "^0.2.1",
"sass": "^1.97.3",
"sass-loader": "^16.0.6",
"typescript": "^5.9.3",
"url": "^0.11.4",
"util": "^0.12.5",
"vitest": "^4.1.0",
"webpack": "^5.105.0",
"webpack-cli": "^6.0.1"
}
}