-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
109 lines (109 loc) · 3.97 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
{
"private": true,
"name": "tg-spa-utils-root",
"prettier": "@thorgate/prettier-config",
"workspaces": [
"examples/*",
"packages/*"
],
"devDependencies": {
"@reduxjs/toolkit": "^1.5.0",
"@rollup/plugin-commonjs": "^17.1.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^11.2.0",
"@rollup/plugin-replace": "^2.4.1",
"@testing-library/jest-dom": "^5.11.9",
"@testing-library/react": "^11.2.5",
"@testing-library/react-hooks": "^5.1.0",
"@tg-resources/core": "^3.1.3",
"@tg-resources/redux-saga-router": "^3.1.3",
"@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/uuid": "^3.4.7",
"@types/warning": "^3.0.0",
"@typescript-eslint/eslint-plugin": "^4.16.1",
"@typescript-eslint/parser": "^4.16.1",
"check-engines": "^1.5.0",
"connected-react-router": "^6.9.1",
"dtslint": "4.0.7",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-react": "^7.18.3",
"eslint-plugin-react-hooks": "^2.3.0",
"formik": "^2.1.4",
"history": "^4.10.1",
"i18next": "^19.9.1",
"jest": "^26.6.3",
"jest-cli": "^26.6.3",
"lerna": "^3.20.2",
"lodash.template": "^4.5.0",
"lru-cache": "^5.1.1",
"normalizr": "^3.5.0",
"path-to-regexp": "^6.1.0",
"prettier": "2.2.1",
"qs": "^6.9.1",
"razzle": "^3.3.0",
"razzle-plugin-eslint": "^3.3.0",
"razzle-plugin-scss": "^3.3.0",
"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",
"rollup": "^2.40.0",
"rollup-plugin-typescript2": "^0.30.0",
"tg-resources": "^3.1.3",
"ts-jest": "^26.5.3",
"tslib": "^2.1.0",
"typescript": "4.2.3",
"uuid": "^3.4.0"
},
"scripts": {
"create-package": "node scripts/bootstrapPackage.js",
"start-api-server": "./packages/test-server/bin/run-test-server.js",
"bootstrap": "lerna bootstrap",
"build": "lerna --ignore=example-razzle-app exec yarn build",
"check-formatting": "prettier --check 'packages/**/src/**/*.{ts,tsx}'",
"show-formatting": "prettier 'packages/**/src/**/*.{ts,tsx}'",
"code-format": "prettier --write 'packages/**/src/**/*.{ts,tsx}'",
"lint": "yarn check-formatting && lerna --ignore=example-razzle-app exec yarn lint",
"type-check": "lerna run type-check",
"test": "jest",
"testAll": "yarn test:coverage && yarn test:examples",
"test:examples": "lerna --scope example-* exec -- yarn test --coverage",
"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 --ignore=examples/* version --exact",
"prerun-publish": "yarn build",
"run-publish": "lerna --ignore=examples/* publish",
"run-publish:git": "lerna --ignore=examples/* publish from-git",
"start-example": "cd examples/example-app && yarn dev",
"start-example:prod": "cd examples/example-app && yarn build && yarn start",
"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"
}
}