This repository has been archived by the owner on May 12, 2021. It is now read-only.
forked from Feverqwe/Transmission
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 2.21 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
{
"name": "trnasmission-easy-client",
"version": "1.0.0",
"scripts": {
"watch": "webpack --mode development --watch --config webpack.config.js",
"watchFirfox": "npm run watch -- --BROWSER firefox",
"build": "webpack --mode production --config webpack.config.js",
"_compress": "node ./builder/compressDist",
"_compressSource": "node ./builder/compressSource",
"_releaseCh": "npm run build -- --BROWSER chrome && npm run _compress -- --BROWSER chrome",
"_releaseFf": "npm run build -- --BROWSER firefox && npm run _compress -- --BROWSER firefox && npm run _compressSource -- --BROWSER firefox",
"_releaseOp": "npm run build -- --BROWSER opera && npm run _compress -- --BROWSER opera && npm run _compressSource -- --BROWSER opera",
"release": "npm run _releaseCh && npm run _releaseFf && npm run _releaseOp"
},
"dependencies": {
"d3": "^5.15.0",
"escape-string-regexp": "^2.0.0",
"fecha": "^3.0.3",
"filesize": "^6.0.1",
"mobx": "^5.15.1",
"mobx-react": "^6.1.4",
"mobx-state-tree": "^3.15.0",
"promise-limit": "^2.7.0",
"prop-types": "^15.7.2",
"rc-select": "^9.2.2",
"react": "^16.12.0",
"react-color": "^2.17.3",
"react-contexify": "^4.1.1",
"react-dom": "^16.12.0",
"react-router-dom": "^5.1.2",
"react-tiny-popover": "^4.0.0",
"serialize-error": "^5.0.0",
"whatwg-fetch": "^3.0.0"
},
"devDependencies": {
"@babel/cli": "^7.7.7",
"@babel/core": "^7.7.7",
"@babel/plugin-proposal-class-properties": "^7.7.4",
"@babel/plugin-proposal-decorators": "^7.7.4",
"@babel/plugin-syntax-dynamic-import": "^7.7.4",
"@babel/preset-env": "^7.7.7",
"@babel/preset-react": "^7.7.4",
"@babel/register": "^7.7.7",
"archiver": "^3.1.1",
"babel-loader": "^8.0.6",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^5.1.1",
"css-loader": "^3.4.0",
"cssnano": "^4.1.10",
"file-loader": "^5.0.2",
"html-webpack-plugin": "^3.2.0",
"less": "^3.10.3",
"less-loader": "^5.0.0",
"mini-css-extract-plugin": "^0.9.0",
"optimize-css-assets-webpack-plugin": "^5.0.3",
"style-loader": "^1.1.2",
"url-loader": "^3.0.0",
"webpack": "^4.41.5",
"webpack-cli": "^3.3.10"
}
}