-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
93 lines (93 loc) · 3.25 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
{
"private": true,
"name": "tg-react-utils-root",
"prettier": "@thorgate/prettier-config",
"workspaces": [
"packages/*"
],
"devDependencies": {
"@reduxjs/toolkit": "^1.5.0",
"@testing-library/jest-dom": "^5.11.9",
"@testing-library/react": "^11.2.5",
"@testing-library/react-hooks": "^5.1.0",
"@tg-resources/core": "^3.2.0",
"@tg-resources/redux-saga-router": "^3.2.0",
"@thorgate/eslint-config-typescript": "^2.1.0",
"@thorgate/prettier-config": "1.0.1",
"@types/express": "^4.17.2",
"@types/is": "^0.0.21",
"@types/jest": "^26.0.20",
"@types/lru-cache": "^5.1.0",
"@types/node": "^13.7.0",
"@types/qs": "^6.9.1",
"@types/react": "^16.9.19",
"@types/react-dom": "^16.9.5",
"@types/react-redux": "^7.1.16",
"@types/react-router": "^5.1.12",
"@types/react-router-config": "^5.0.2",
"@types/react-router-dom": "^5.1.7",
"@types/warning": "^3.0.0",
"@typescript-eslint/eslint-plugin": "^4.16.1",
"@typescript-eslint/parser": "^4.16.1",
"check-engines": "^1.5.0",
"eslint": "^6.8.0",
"eslint-config-airbnb-typescript": "^12.0.0",
"eslint-config-prettier": "^8.1.0",
"eslint-config-react-app": "^5.2.0",
"eslint-import-resolver-typescript": "^2.3.0",
"eslint-plugin-flowtype": "^4.6.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-jest": "^24.1.3",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.2.0",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-react-hooks": "^4.2.0",
"history": "^4.10.1",
"i18next": "^19.9.1",
"jest": "^26.6.3",
"jest-cli": "^26.6.3",
"lerna": "^3.20.2",
"prettier": "2.2.1",
"qs": "^6.9.1",
"react": "^16.14.0",
"react-dom": "^16.14.0",
"react-i18next": "^11.8.8",
"react-redux": "^7.2.2",
"react-router": "^5.2.0",
"react-router-config": "^5.1.1",
"react-router-dom": "^5.2.0",
"react-test-renderer": "^16.12.0",
"redux": "^4.0.5",
"redux-saga": "^1.1.3",
"rimraf": "^3.0.2",
"ts-jest": "^26.5.3",
"tsdx": "^0.14.1",
"tslib": "^2.1.0",
"typescript": "4.2.3"
},
"scripts": {
"create-package": "node scripts/bootstrapPackage.js",
"start-api-server": "./packages/test-server/bin/run-test-server.js",
"bootstrap": "lerna bootstrap",
"build": "lerna exec yarn build",
"check-js-format": "prettier --check 'packages/**/src/**/*.{ts,tsx}'",
"format": "prettier --write 'packages/**/src/**/*.{ts,tsx}'",
"lint": "yarn check-js-format && lerna exec yarn lint",
"type-check": "lerna run type-check",
"test": "jest",
"test:coverage": "yarn test --coverage --runInBand",
"coveralls": "cat ./coverage/lcov.info | coveralls",
"check-packages": "yarn clean && yarn build && yarn test && yarn lint",
"bump-version": "lerna version --exact",
"prerun-publish": "yarn build",
"run-publish": "lerna publish",
"run-publish:git": "lerna publish from-git",
"clean": "lerna exec yarn clean && yarn clean-logs",
"clean-incl-deps": "yarn clean && yarn clean-deps",
"clean-deps": "rimraf packages/*/node_modules && rimraf yarn.lock && rimraf */**/yarn.lock && rimraf node_modules",
"clean-logs": "rimraf *.log && rimraf */**/*.log"
},
"engines": {
"node": ">=10"
}
}