-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
101 lines (101 loc) · 3.04 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
{
"name": "etoro-better-ui",
"version": "1.0.0-20210403",
"description": "",
"main": "index.js",
"husky": {
"hooks": {
"pre-push": "npm run check"
}
},
"scripts": {
"dev": "webpack --progress -w --mode development",
"check": "npm test --coverage && eslint --config .eslintrc.js ./src",
"server": "npx http-server -p 9000 dist",
"build": "NODE_ENV=production webpack --progress --mode production",
"test": "jest",
"changelog": "npx conventional-changelog-cli -i CHANGELOG.md -p angular -s -r 0",
"lint": "FULL=1 eslint ./src"
},
"author": "lezi.chen",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/plugin-transform-typescript": "^7.12.1",
"@babel/preset-env": "^7.12.11",
"@babel/preset-react": "^7.12.10",
"@babel/preset-typescript": "^7.12.7",
"@babel/runtime": "^7.12.5",
"@emotion/babel-preset-css-prop": "^11.0.0",
"@svgr/parcel-plugin-svgr": "^5.5.0",
"@svgr/webpack": "^5.5.0",
"@testing-library/jest-dom": "^5.11.9",
"@testing-library/react": "^11.2.3",
"@types/angular": "^1.8.0",
"@types/big.js": "^6.0.2",
"@types/classnames": "^2.2.11",
"@types/debug": "^4.1.5",
"@types/google.analytics": "0.0.41",
"@types/jest": "^26.0.20",
"@types/jquery": "^3.5.5",
"@types/lodash": "^4.14.168",
"@types/node": "^14.14.22",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"@types/redux-logger": "^3.0.8",
"@types/redux-thunk": "^2.1.0",
"@typescript-eslint/eslint-plugin": "^4.14.1",
"@typescript-eslint/parser": "^4.14.1",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.6.3",
"babel-loader": "^8.2.2",
"babel-plugin-import": "^1.13.3",
"babel-plugin-lodash": "^3.3.4",
"eslint": "^7.18.0",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": "^4.3.8",
"parcel-bundler": "^1.12.4",
"prettier": "^2.2.1",
"prettier-plugin-jsdoc": "^0.3.8",
"ts-jest": "^26.5.0",
"ts-loader": "^8.0.14",
"typescript": "^4.1.3",
"webpack": "^5.19.0",
"webpack-cli": "^4.4.0"
},
"dependencies": {
"@emotion/react": "^11.1.4",
"@material-ui/core": "^4.11.3",
"@material-ui/icons": "^4.11.2",
"@material-ui/lab": "^4.0.0-alpha.57",
"@reduxjs/toolkit": "^1.5.0",
"@types/react-redux": "^7.1.16",
"big.js": "^6.0.3",
"classnames": "^2.2.6",
"cogo-toast": "^4.2.3",
"dayjs": "^1.10.4",
"debug": "^4.3.1",
"emittery": "^0.8.1",
"i18next": "^19.8.5",
"jest": "^26.6.3",
"ky": "^0.26.0",
"libreact": "^2.13.3",
"lodash": "^4.17.20",
"p-wait-for": "^3.2.0",
"query-string": "^6.13.8",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-i18next": "^11.8.5",
"react-redux": "^7.2.2",
"react-use": "^15.3.8",
"redux": "^4.0.5",
"redux-logger": "^3.0.6",
"redux-thunk": "^2.3.0",
"tsdef": "0.0.14",
"urlcat": "^2.0.4",
"zustand": "^3.3.1"
}
}