-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
103 lines (103 loc) · 3.45 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
{
"name": "finance-portal-v2-ui",
"version": "3.0.3",
"description": "",
"main": "index.js",
"scripts": {
"compile": "tsc --noemit",
"start": "webpack-dev-server",
"build": "export NODE_ENV=production; webpack --mode production",
"serve": "serve dist -s -p 3002",
"serve:prod": "serve -s dist -l 8080 --cors",
"lint": "eslint --ext .js,.jsx,.ts,.tsx src --color",
"prettier": "prettier --write 'src/**/*.{ts,tsx,js,scss,css,json}' 'webpack.*.js'",
"test:unit": "jest --testMatch **/tests/unit/**/*test.ts"
},
"authors": [
"Ivan Annovazzi <[email protected]>",
"Juan Correa <[email protected]>",
"Matt Kingston <[email protected]>",
"James Bush <[email protected]"
],
"license": "ModusBox Internal Use Only",
"dependencies": {
"@babel/core": "^7.9.0",
"@babel/eslint-parser": "^7.11.3",
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/plugin-proposal-object-rest-spread": "^7.11.0",
"@babel/plugin-transform-react-jsx": "^7.10.4",
"@babel/plugin-transform-runtime": "^7.11.0",
"@babel/preset-env": "^7.11.0",
"@babel/preset-react": "^7.9.1",
"@babel/preset-typescript": "^7.10.4",
"@modusbox/modusbox-ui-components": "1.23.0",
"@reduxjs/toolkit": "^1.4.0",
"@types/async-retry": "^1.4.3",
"@types/classnames": "^2.2.10",
"@types/history": "^4.7.7",
"@types/html-webpack-plugin": "^3.2.3",
"@types/lodash": "^4.14.161",
"@types/object-hash": "^2.2.1",
"@types/react": "^16.9.46",
"@types/react-dom": "^16.9.0",
"@types/react-redux": "^7.1.9",
"@types/react-router-dom": "^5.1.5",
"@types/uuid": "^8.3.1",
"@types/webpack-env": "^1.15.2",
"@typescript-eslint/eslint-plugin": "^3.10.1",
"@typescript-eslint/parser": "^3.10.1",
"async-retry": "^1.3.3",
"axios": "^0.20.0",
"babel-loader": "^8.1.0",
"babel-plugin-syntax-async-functions": "^6.13.0",
"classnames": "^2.2.6",
"connected-react-router": "^6.8.0",
"css-loader": "4.2.1",
"eslint": "^7.3.1",
"eslint-config-airbnb": "^18.2.0",
"eslint-config-airbnb-typescript": "^9.0.0",
"eslint-config-prettier": "^6.11.0",
"eslint-config-react-app": "^5.2.1",
"eslint-import-resolver-typescript": "^2.0.0",
"eslint-loader": "^4.0.2",
"eslint-plugin-flowtype": "^5.1.3",
"eslint-plugin-import": "^2.21.2",
"eslint-plugin-jest": "^23.20.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.20.6",
"eslint-plugin-react-hooks": "^4.0.4",
"exceljs": "^4.3.0",
"history": "4.10.1",
"html-webpack-plugin": "^4.3.0",
"http-proxy-middleware": "^1.0.5",
"lodash": "^4.17.20",
"moment": "^2.27.0",
"node-polyfill-webpack-plugin": "^1.1.4",
"object-hash": "^2.2.0",
"prettier": "^2.0.5",
"prettier-eslint": "^11.0.0",
"prettier-eslint-cli": "^5.0.0",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-redux": "7.2.1",
"react-router-dom": "^5.2.0",
"redux": "4.0.5",
"redux-saga": "^1.1.3",
"redux-toolkit": "^1.1.2",
"serve": "^11.3.0",
"style-loader": "^1.2.1",
"ts-loader": "8.0.3",
"typescript": "^3.9.7",
"url-loader": "^4.1.1",
"uuid": "^3.4.0",
"webpack": "5.0.0-beta.29",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "3.11.0"
},
"devDependencies": {
"@types/jest": "^27.0.2",
"babel-jest": "^27.3.1",
"jest": "^27.3.1"
}
}