-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
141 lines (141 loc) · 5.12 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
137
138
139
140
141
{
"name": "telestion-client",
"description": "Telestion frontend collection",
"license": "MIT",
"version": "0.18.1",
"private": true,
"homepage": "https://telestion.wuespace.de/",
"engines": {
"node": ">=14",
"pnpm": ">=7.0.0-rc.3"
},
"scripts": {
"prepare": "husky install",
"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-reporter-tc-cli",
"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-reporter-tc-cli",
"build:cli": "pnpm run --filter telestion-client-cli build",
"check": "pnpm run --recursive --filter './packages/**' 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 .",
"style:ci": "prettier --list-different .",
"test": "pnpm run test:packages && pnpm run test:unit",
"test:packages": "pnpm run --recursive --filter './packages/**' 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 --filter './packages/**' clean",
"clean:docs": "rimraf docs",
"clean:coverage": "rimraf coverage jest.results.json",
"story": "start-storybook",
"story:build": "build-storybook",
"story:docs": "start-storybook --docs",
"story:docs:build": "build-storybook --docs",
"chromatic": "chromatic --skip 'dependabot/**' --project-token=CHROMATIC_PROJECT_TOKEN",
"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"
},
"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": {
"@babel/core": "^7.12.9",
"@parcel/config-default": "^2.5.0",
"@parcel/core": "^2.5.0",
"@parcel/optimizer-data-url": "^2.5.0",
"@parcel/packager-ts": "^2.5.0",
"@parcel/source-map": "^2.0.2",
"@parcel/transformer-inline-string": "^2.5.0",
"@parcel/transformer-svg-react": "^2.5.0",
"@parcel/transformer-typescript-types": "^2.5.0",
"@storybook/addon-docs": "^6.4.22",
"@storybook/addon-essentials": "^6.4.22",
"@storybook/addon-links": "^6.4.22",
"@storybook/addon-postcss": "^2.0.0",
"@storybook/react": "^6.4.22",
"@testing-library/react-hooks": "^7.0.2",
"@types/jest": "^27.5.0",
"@typescript-eslint/eslint-plugin": "^5.22.0",
"@typescript-eslint/parser": "^5.22.0",
"babel-loader": "^8.2.5",
"chromatic": "^6.5.4",
"concurrently": "^7.1.0",
"eslint": "^8.15.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^16.2.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^26.1.5",
"eslint-plugin-jsdoc": "^38.1.6",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.29.4",
"eslint-plugin-react-hooks": "^4.5.0",
"eslint-plugin-tsdoc": "^0.2.16",
"fliegdoc": "^0.5.1",
"husky": "^7.0.4",
"jest": "~27.5.1",
"parcel": "^2.5.0",
"prettier": "2.6.2",
"pretty-quick": "^3.1.3",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-test-renderer": "^17.0.2",
"rimraf": "^3.0.2",
"ts-jest": "~27.1.4",
"typescript": "4.7.0-beta",
"webpack": "^4.46.0"
},
"dependencies": {
"@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.43",
"@types/react-dom": "17.0.14"
}
}
}