-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
119 lines (119 loc) · 4.11 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
{
"name": "tg-resources-root",
"private": true,
"workspaces": [
"examples/*",
"packages/*"
],
"version": "3.4.0.alpha1",
"description": "Abstractions on-top of `superagent` (or other Ajax libaries) for communication with REST.",
"scripts": {
"create-package": "node scripts/bootstrapPackage.js",
"bootstrap": "check-engines",
"build": "lerna --ignore=examples/* exec -- yarn build",
"run-examples": "lerna exec --scope=run-examples yarn start",
"check-formatting": "prettier --check 'packages/**/src/**/*.{ts,tsx}' 'packages/**/test/**/*.{ts,tsx}'",
"code-format": "prettier --write 'packages/**/src/**/*.{ts,tsx}' 'packages/**/test/**/*.{ts,tsx}'",
"fmt": "yarn",
"lint": "lerna --ignore=examples/* run lint -- --fix",
"check-types": "lerna run check-types",
"test": "jest --bail",
"test:watch": "jest --watch --bail",
"test:coverage": "yarn test --coverage",
"check-packages": "yarn clean && yarn build && yarn test && yarn lint && yarn check-types",
"bump-version": "lerna --ignore=examples/* version --no-push --exact",
"deploy": "lerna publish --conventional-commits --message 'chore: release new versions'",
"prerelease": "lerna publish --conventional-prerelease --pre-dist-tag next",
"prerun-publish": "yarn build",
"run-publish": "lerna --ignore=examples/* publish",
"clean": "lerna run 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"
},
"repository": {
"type": "git",
"url": "git+https://github.com/thorgate/tg-resources.git"
},
"keywords": [
"api",
"request",
"http",
"ajax"
],
"author": "Thorgate <[email protected]>",
"contributors": [
"Jürno Ader <[email protected]> (https://github.com/Jyrno42)",
"Jörgen Ader <[email protected]> (https://github.com/metsavaht)",
"Simon Schmidt (https://github.com/simonschmidt)",
"Romet Tagobert (https://github.com/amPerl)",
"Jaak Erisalu (https://github.com/jaakerisalu)"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/thorgate/tg-resources/issues"
},
"homepage": "https://github.com/thorgate/tg-resources#readme",
"dependencies": {
"@babel/core": "^7.18.10",
"@babel/plugin-transform-async-to-generator": "^7.18.6",
"@babel/preset-env": "^7.12.1",
"@thorgate/prettier-config": "1.1.0",
"@types/cookie": "^0.5.1",
"@types/cookie-parser": "^1.4.1",
"@types/express": "^4.17.9",
"@types/jest": "^29.5.10",
"@types/morgan": "^1.9.3",
"@types/multer": "^1.4.7",
"@types/node": "^18.7.1",
"@types/qs": "^6.9.5",
"@types/superagent": "^4.1.22",
"@types/uuid": "^8.3.4",
"@typescript-eslint/eslint-plugin": "^6.7.2",
"@typescript-eslint/parser": "^6.7.2",
"abortcontroller-polyfill": "^1.7.5",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^29.7.0",
"check-engines": "1.5.0",
"cookie-parser": "^1.4.3",
"debug": "*",
"eslint": "^8.49.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^3.4.0",
"eslint-plugin-flowtype": "^8.0.3",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^27.6.0",
"eslint-plugin-prettier": "^4.2.1",
"express": "^4.17.1",
"form-data": "^4.0.0",
"fs-extra": "*",
"jest": "^29.7.0",
"jest-cli": "^29.7.0",
"jest-extended": "^4.0.2",
"lerna": "^8.0.0",
"multiparty": "*",
"prettier": "^2.7.1",
"qs": "^6.10.1",
"redux": "^4.0.4",
"redux-saga": "^1.1.3",
"regenerator-runtime": "^0.13.9",
"rimraf": "^3.0.2",
"superagent": "^8.0.0",
"temp-dir": "2.0.0",
"ts-jest": "^29.1.1",
"tsd": "^0.29.0",
"dts-cli": "^2.0.5",
"tslib": "^2.6.2",
"typescript": "^5.2.2",
"uuid": "^8.3.2"
},
"engines": {
"node": ">=16"
},
"resolutions": {
"node-notifier": ">=10.0.0",
"jest-environment-jsdom": ">=28.1.3"
}
}