forked from pm4ml/mojaloop-payment-manager-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
115 lines (115 loc) · 3.56 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
113
114
115
{
"name": "mojaloop-payment-manager-ui",
"version": "1.17.5",
"private": true,
"proxy": "http://localhost:10000",
"engines": {
"node": "=16.x"
},
"dependencies": {
"@modusbox/modusbox-ui-components": "^1.23.0",
"@redux-saga/testing-utils": "^1.1.3",
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.3.2",
"@testing-library/user-event": "^7.1.2",
"@types/classnames": "^2.2.10",
"@types/d3": "^5.7.2",
"@types/history": "^4.7.6",
"@types/jest": "^24.0.0",
"@types/lodash": "^4.14.157",
"@types/node": "^16.11.27",
"@types/react": "^16.9.0",
"@types/react-dom": "^16.9.0",
"@types/react-redux": "^7.1.9",
"@types/react-router-dom": "^5.1.5",
"@types/redux": "^3.6.0",
"@types/webpack-env": "^1.15.2",
"@typescript-eslint/eslint-plugin": "^3.4.0",
"apexcharts": "^3.22.0",
"axe-core": "^4.0.2",
"axios": "^0.19.2",
"classnames": "^2.2.6",
"color-scheme": "^1.0.1",
"connected-react-router": "^6.8.0",
"d3": "^5.16.0",
"eslint": "^7.3.1",
"eslint-config-airbnb": "^18.2.0",
"eslint-config-airbnb-typescript": "^8.0.2",
"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-jsx-a11y": "^6.3.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.20.0",
"eslint-plugin-react-hooks": "^4.0.4",
"framer-motion": "^1.11.1",
"history": "4.10.1",
"husky": "^4.2.5",
"lodash": "^4.17.19",
"moment": "^2.27.0",
"normalize.css": "^8.0.1",
"pondjs": "^0.9.0",
"prettier": "^2.0.5",
"prettier-eslint": "^11.0.0",
"prettier-eslint-cli": "^5.0.0",
"react": "^16.13.1",
"react-apexcharts": "^1.3.7",
"react-app-rewired": "^2.1.6",
"react-dom": "^16.13.1",
"react-redux": "^7.2.0",
"react-router-dom": "^5.2.0",
"react-scripts": "3.4.1",
"redux": "^4.0.5",
"redux-devtools-extension": "^2.13.8",
"redux-saga": "^1.1.3",
"reselect": "^4.0.0",
"sass": "^1.50.0",
"sass-loader": "^12.0.0",
"serve": "^11.3.2",
"svg-sprite-loader": "^5.0.0",
"typescript": "~3.7.2",
"xlsx": "^0.17.5"
},
"scripts": {
"start": "react-app-rewired start",
"build": "react-app-rewired build",
"test": "react-app-rewired test",
"test:nowatch": "CI=true react-app-rewired test --env=jsdom",
"eject": "react-app-rewired eject",
"serve": "npm start --prefix server",
"lint": "eslint --ext .js,.jsx,.ts,.tsx src --color",
"lint:fix": "eslint --ext .js,.jsx,.ts,.tsx src --color --fix",
"prettier": "prettier --write 'src/**/*.{ts,tsx,js,scss,css,json}'",
"proxy": "npm start --prefix proxy",
"release": "standard-version --releaseCommitMessageFormat 'chore(release): {{currentTag}} [skip ci]'",
"snapshot": "standard-version --no-verify --skip.changelog --prerelease snapshot --releaseCommitMessageFormat 'chore(snapshot): {{currentTag}}'"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"redux-mock-store": "^1.5.4",
"standard-version": "^9.5.0"
},
"husky": {
"hooks": {
"pre-commit": "yarn prettier && yarn lint",
"pre-push": "yarn test:nowatch"
}
}
}