-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
112 lines (112 loc) · 3.38 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "vortex-portal",
"version": "0.3.9",
"private": true,
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.0-14",
"@fortawesome/free-solid-svg-icons": "^5.1.0-11",
"@fortawesome/react-fontawesome": "^0.1.0-11",
"animate.css": "^3.7.0",
"antd": "^3.9.2",
"axios": "^0.18.0",
"classnames": "^2.2.6",
"copy-to-clipboard": "^3.0.8",
"file-saver": "^2.0.0-rc.3",
"history": "^4.7.2",
"jwt-decode": "^2.2.0",
"lodash": "^4.17.10",
"moment": "^2.22.2",
"path-to-regexp": "^2.2.1",
"react": "^16.3.2",
"react-dom": "^16.3.2",
"react-intl": "^2.4.0",
"react-particles-js": "2.4.0-beta.5",
"react-redux": "^5.0.7",
"react-router": "^4.3.1",
"react-router-dom": "^4.2.2",
"react-router-redux": "^5.0.0-alpha.9",
"recharts": "^1.1.0",
"recompose": "^0.29.0",
"redux": "^4.0.0",
"redux-auth-wrapper": "^2.0.3",
"redux-observable": "^1.0.0",
"redux-thunk": "^2.3.0",
"rxjs": "^6.2.2",
"sass-mq": "^5.0.0",
"sockjs-client": "^1.1.5",
"typesafe-actions": "^2.0.4",
"xterm": "^3.6.0"
},
"scripts": {
"start": "react-app-rewired start --scripts-version react-scripts-ts",
"build": "react-app-rewired build --scripts-version react-scripts-ts",
"test": "react-app-rewired test --scripts-version react-scripts-ts --env=jsdom",
"eject": "react-scripts-ts eject",
"typescript": "tsc --project tsconfig.prod.json --noEmit",
"lint": "tslint -c tslint.json -p tsconfig.prod.json -t stylish",
"lint:fix": "tslint --fix -c tslint.json -p tsconfig.prod.json -t stylish"
},
"husky": {
"hooks": {
"pre-commit": "npm run typescript && npx lint-staged"
}
},
"lint-staged": {
"src/**/*.{ts,tsx}": [
"tslint -c tslint.json -p tsconfig.prod.json -t stylish"
]
},
"devDependencies": {
"@types/classnames": "^2.2.4",
"@types/file-saver": "^1.3.0",
"@types/history": "^4.6.2",
"@types/jest": "^22.2.3",
"@types/jwt-decode": "^2.2.1",
"@types/lodash": "^4.14.110",
"@types/node": "^10.0.6",
"@types/numeral": "0.0.25",
"@types/react": "^16.4.10",
"@types/react-dom": "^16.0.5",
"@types/react-intl": "^2.3.8",
"@types/react-redux": "^6.0.2",
"@types/react-router-dom": "^4.2.6",
"@types/react-router-redux": "^5.0.15",
"@types/recharts": "^1.0.26",
"@types/recompose": "^0.26.4",
"@types/redux-auth-wrapper": "^2.0.8",
"@types/redux-logger": "^3.0.6",
"@types/sockjs-client": "^1.1.0",
"@types/webpack-env": "^1.13.6",
"husky": "1.0.0-rc.13",
"less-loader": "^4.1.0",
"lint-staged": "^7.2.2",
"node-sass": "^4.9.0",
"prettier": "^1.14.2",
"react-app-rewire-css-modules": "codebandits/react-app-rewire-css-modules",
"react-app-rewire-less": "^2.1.1",
"react-app-rewired": "^1.5.2",
"react-hot-loader": "^4.3.3",
"react-scripts-ts": "^2.16.0",
"redux-devtools-extension": "^2.13.2",
"redux-logger": "^3.0.6",
"sass-loader": "^7.0.1",
"ts-import-plugin": "^1.5.3",
"tslint": "^5.11.0",
"tslint-plugin-prettier": "^1.3.0",
"tslint-react": "^3.6.0",
"typescript": "^3.0.1"
},
"proxy": {
"v1": {
"target": "http://172.17.8.100:32326",
"ws": true
},
"registry": {
"target": "https://dockerhub.pw",
"pathRewrite": {
"^/registry": ""
},
"changeOrigin": true
}
}
}