-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
128 lines (128 loc) · 3.88 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
116
117
118
119
120
121
122
123
124
125
126
127
128
{
"name": "onboarding-client",
"version": "0.1.0",
"private": true,
"engines": {
"npm": ">=8.15.0",
"node": ">=20.14.0"
},
"dependencies": {
"@babel/plugin-proposal-private-property-in-object": "^7.21.11",
"@sentry/browser": "^7.74.0",
"array.prototype.find": "^2.1.2",
"axios": "^0.24.0",
"bootstrap": "^4.6.2",
"classnames": "^2.2.6",
"connected-react-router": "^6.9.3",
"downloadjs": "^1.4.7",
"font-awesome": "^4.7.0",
"history": "^4.9.0",
"hwcrypto-js": "git://github.com/ErkoRisthein/hwcrypto.js.git#0.0.14",
"lodash": "^4.17.20",
"moment": "^2.29.4",
"npm-run-all": "^4.1.3",
"promise": "^8.0.3",
"prop-types": "^15.7.2",
"qs": "^6.8.0",
"react": "^17.0.2",
"react-app-polyfill": "^1.0.2",
"react-dom": "^17.0.2",
"react-facebook": "^8.1.4",
"react-ga4": "^1.4.1",
"react-global-configuration": "^1.4.1",
"react-gtm-module": "^2.0.11",
"react-intl": "^5.25.1",
"react-query": "^3.31.0",
"react-redux": "^7.2.9",
"react-router-dom": "^5.3.4",
"react-tooltip": "4.2.17",
"redux": "^4.2.1",
"redux-form": "^8.3.10",
"redux-thunk": "^2.4.0",
"sass": "^1.69.3",
"typescript": "^4.9.5",
"uuid": "^3.3.3"
},
"scripts": {
"build": "react-scripts --openssl-legacy-provider build",
"build:staging": "REACT_APP_ENV=staging react-scripts build",
"develop": "react-scripts --openssl-legacy-provider start",
"develop-production": "HTTPS=true HOST=local.tuleva.ee DANGEROUSLY_DISABLE_HOST_CHECK=true npm run develop",
"develop-production-win": "set HTTPS=true&&set HOST=local.tuleva.ee&&npm run develop",
"lint": "eslint --ext .js,.ts,.jsx,.tsx src/",
"test": "TZ=UTC react-scripts test --coverage --json --outputFile=test-results.json",
"update-snapshot": "react-scripts test --updateSnapshot",
"eject": "react-scripts eject",
"format": "eslint --ext .js,.ts,.jsx,.tsx src/ --fix",
"prepare": "husky"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.1.4",
"@testing-library/react": "^12.1.2",
"@testing-library/user-event": "^13.5.0",
"@transferwise/eslint-config": "^6.1.0",
"@types/classnames": "^2.2.11",
"@types/downloadjs": "^1.4.4",
"@types/enzyme": "^3.10.10",
"@types/jest": "^29.5.12",
"@types/lodash": "^4.14.176",
"@types/qs": "^6.9.6",
"@types/react": "^17.0.34",
"@types/react-dom": "^17.0.11",
"@types/react-global-configuration": "^1.3.1",
"@types/react-redux": "^7.1.20",
"@types/react-router-dom": "^5.3.3",
"@types/redux-form": "^8.3.6",
"@types/redux-mock-store": "^1.0.3",
"@wojtekmaj/enzyme-adapter-react-17": "^0.6.5",
"axios-mock-adapter": "^1.22.0",
"buffer": "^6.0.3",
"enzyme": "^3.11.0",
"enzyme-to-json": "^3.6.2",
"eslint-plugin-formatjs": "^4.12.2",
"eslint-plugin-fp": "^2.3.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-jest-dom": "^5.1.0",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^2.5.1",
"eslint-plugin-testing-library": "^5.0.0",
"husky": "^9.0.11",
"jest": "^29.7.0",
"lint-staged": "^11.2.6",
"msw": "^0.27.1",
"prettier": "^2.8.8",
"react-scripts": "^5.0.1",
"react-test-renderer": "^17.0.1",
"redux-mock-store": "^1.5.3",
"ts-jest": "^29.1.2"
},
"jest": {
"coverageReporters": [
"lcov",
"text"
],
"snapshotSerializers": [
"enzyme-to-json/serializer"
]
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx,json,css,scss,md}": [
"prettier --write"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"proxy": "http://localhost:9000",
"//proxy": "https://onboarding-service.tuleva.ee",
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}