-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
136 lines (136 loc) · 5.09 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
129
130
131
132
133
134
135
136
{
"name": "telestion-client",
"description": "Telestion frontend collection",
"license": "MIT",
"version": "0.0.0",
"private": true,
"homepage": "https://telestion.wuespace.de/",
"engines": {
"node": ">=16"
},
"scripts": {
"prepare": "husky install",
"playground": "pnpm run --filter component-playground start",
"watch": "concurrently pnpm:watch:types pnpm:watch:parcel pnpm:watch:cli",
"watch:types": "tsc --watch --project packages/telestion-client-types",
"watch:parcel": "parcel watch packages/vertx-event-bus packages/vertx-mock-server packages/telestion-client-prop-types packages/telestion-client-core packages/telestion-client-common packages/parcel-optimizer-electron-require packages/parcel-reporter-tc-cli packages/parcel-resolver-react",
"watch:cli": "pnpm run --filter telestion-client-cli watch",
"build": "pnpm run build:types && pnpm run build:parcel && pnpm run build:cli",
"build:types": "tsc --project packages/telestion-client-types",
"build:parcel": "parcel build packages/vertx-event-bus packages/vertx-mock-server packages/telestion-client-prop-types packages/telestion-client-core packages/telestion-client-common packages/parcel-optimizer-electron-require packages/parcel-reporter-tc-cli packages/parcel-resolver-react",
"build:cli": "pnpm run --filter telestion-client-cli build",
"check": "pnpm run --recursive check",
"lint": "eslint --ext .js,.jsx,.ts,.tsx --ignore-pattern node_modules/ --no-error-on-unmatched-pattern \".\"",
"style": "pnpm run style:fix",
"style:fix": "prettier --write .",
"style:check": "prettier --check .",
"test": "pnpm run test:packages && pnpm run test:unit",
"test:packages": "pnpm run --recursive test",
"test:unit": "jest --coverage --outputFile=jest.results.json",
"clean": "pnpm run clean:packages && pnpm run clean:docs && pnpm run clean:coverage",
"clean:packages": "pnpm run --recursive clean",
"clean:docs": "rimraf docs",
"clean:coverage": "rimraf coverage jest.results.json",
"docs": "pnpm run docs:build",
"docs:build": "pnpm run docs:types:build",
"docs:types:watch": "fliegdoc build --serve --port 4040",
"docs:types:build": "fliegdoc build",
"ci:style": "prettier --list-different .",
"ci:version": "changeset version && pnpm install --no-frozen-lockfile && git add .",
"ci:publish": "pnpm build && pnpm publish -r"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wuespace/telestion-client.git"
},
"bugs": {
"url": "https://github.com/wuespace/telestion-client/issues"
},
"author": {
"name": "wuespace",
"email": "kontakt@wuespace.de",
"url": "https://www.wuespace.de/"
},
"contributors": [
{
"name": "Pablo Klaschka",
"email": "contact@pabloklaschka.de",
"url": "https://github.com/pklaschka"
},
{
"name": "Jan Tischhöfer",
"email": "jan.tischhoefer@gmail.com",
"url": "https://github.com/jantischhoefer"
},
{
"name": "Ludwig Richter",
"email": "richter@fliegwerk.com",
"url": "https://github.com/fussel178"
}
],
"devDependencies": {
"@changesets/cli": "2.27.9",
"@changesets/types": "5.2.1",
"@parcel/config-default": "2.12.0",
"@parcel/core": "2.12.0",
"@parcel/optimizer-data-url": "2.12.0",
"@parcel/packager-ts": "2.12.0",
"@parcel/resolver-default": "2.12.0",
"@parcel/source-map": "2.1.1",
"@parcel/transformer-inline-string": "2.12.0",
"@parcel/transformer-svg-react": "2.12.0",
"@parcel/transformer-typescript-types": "2.12.0",
"@testing-library/react-hooks": "7.0.2",
"@types/jest": "29.5.14",
"@types/node": "18.19.51",
"@typescript-eslint/eslint-plugin": "5.62.0",
"@typescript-eslint/parser": "5.62.0",
"concurrently": "7.6.0",
"eslint": "8.57.1",
"eslint-config-airbnb": "19.0.4",
"eslint-config-airbnb-base": "15.0.0",
"eslint-config-airbnb-typescript": "17.1.0",
"eslint-config-prettier": "8.10.0",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-jest": "27.9.0",
"eslint-plugin-jsdoc": "39.9.1",
"eslint-plugin-jsx-a11y": "6.10.2",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-react": "7.37.2",
"eslint-plugin-react-hooks": "4.6.2",
"eslint-plugin-tsdoc": "0.3.0",
"fliegdoc": "0.6.0",
"husky": "8.0.3",
"jest": "29.7.0",
"parcel": "2.12.0",
"prettier": "2.8.8",
"pretty-quick": "3.3.1",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-test-renderer": "17.0.2",
"rimraf": "3.0.2",
"ts-jest": "29.2.5",
"typescript": "4.9.5"
},
"dependencies": {
"@wuespace/parcel-optimizer-electron-require": "workspace:^",
"@wuespace/parcel-reporter-tc-cli": "workspace:^",
"@wuespace/parcel-resolver-react": "workspace:^",
"@wuespace/telestion-client-cli": "workspace:^",
"@wuespace/telestion-client-common": "workspace:^",
"@wuespace/telestion-client-core": "workspace:^",
"@wuespace/telestion-client-prop-types": "workspace:^",
"@wuespace/telestion-client-template": "workspace:^",
"@wuespace/telestion-client-types": "workspace:^",
"@wuespace/vertx-event-bus": "workspace:^",
"@wuespace/vertx-mock-server": "workspace:^"
},
"pnpm": {
"overrides": {
"react": "17.0.2",
"react-dom": "17.0.2",
"@types/react": "17.0.83",
"@types/react-dom": "17.0.25"
}
}
}