forked from marudor/bahn.expert
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
156 lines (156 loc) · 4.66 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
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
{
"name": "bahnhofs-abfahrten",
"version": "0.0.2",
"description": "",
"license": "MIT",
"engines": {
"node": "^16.0.0"
},
"private": true,
"workspaces": [
"packages/*"
],
"engineStrict": true,
"scripts": {
"all:clean": "scripts/eachWorkspace.sh build:clean",
"all:build": "scripts/eachWorkspace.sh build",
"all:lint": "scripts/eachWorkspace.sh lint",
"build:clean": "rimraf dist && mkdir dist",
"build:client": "node scripts/buildClient",
"build:client:ci": "node scripts/buildClient sendStats",
"build": "yarn build:client",
"dev": "node devIndex.js",
"lint": "run-p lint:eslint lint:prettier",
"lint:eslint": "eslint --ext .js,.jsx,.ts,.tsx scripts cypress",
"lint:prettier": "prettier -c packages scripts cypress",
"test": "run-p all:lint test:jest test:ts",
"test:jest": "jest",
"test:ts": "run-p test:ts:main test:ts:cypress",
"test:ts:main": "tsc",
"test:ts:cypress": "tsc -p cypress",
"e2e:local": "cypress open",
"e2e:ci": "cypress run",
"doc:start": "./startDocServer.sh",
"doc:build": "yarn workspace server run doc:build",
"doc:build:gitadd": "yarn doc:build && git add public/swagger.json && git add packages/server/API/routes.ts",
"lint-staged": "lint-staged",
"postinstall": "husky install",
"precommit": "run-s doc:build:gitadd lint-staged"
},
"lint-staged": {
"*.{t,j,cj,mj}s?(x)": [
"prettier --write",
"eslint --fix"
],
"**/*.json": [
"prettier --write"
]
},
"devDependencies": {
"@babel/cli": "^7.14.3",
"@babel/plugin-proposal-decorators": "^7.14.2",
"@babel/plugin-transform-react-constant-elements": "^7.13.13",
"@babel/preset-env": "^7.14.4",
"@babel/preset-react": "^7.13.13",
"@babel/preset-typescript": "^7.13.0",
"@babel/register": "^7.13.16",
"@babel/runtime": "^7.14.0",
"@commitlint/cli": "^12.1.4",
"@commitlint/config-conventional": "^12.1.4",
"@cypress/webpack-preprocessor": "^5.9.0",
"@loadable/babel-plugin": "^5.13.2",
"@loadable/webpack-plugin": "^5.15.0",
"@packtracker/webpack-plugin": "^2.3.0",
"@pmmmwh/react-refresh-webpack-plugin": "^0.4.3",
"@testing-library/cypress": "7.0.6",
"@types/compression-webpack-plugin": "^6.0.5",
"@types/jest": "^26.0.23",
"@types/rimraf": "^3.0.0",
"@types/sinonjs__fake-timers": "^6.0.2",
"@types/terser-webpack-plugin": "^5.0.3",
"@types/webpack": "^5.28.0",
"@types/webpack-bundle-analyzer": "4.4.0",
"@types/webpack-hot-middleware": "2.25.4",
"babel-jest": "^27.0.2",
"babel-loader": "^8.2.2",
"babel-plugin-const-enum": "^1.0.1",
"babel-plugin-jsx-remove-data-test-id": "3.0.0",
"babel-plugin-module-resolver": "^4.1.0",
"babel-plugin-parameter-decorator": "^1.0.16",
"babel-plugin-transform-require-ignore": "^0.1.1",
"cache-loader": "^4.1.0",
"chokidar": "^3.5.1",
"compression-webpack-plugin": "^8.0.0",
"css-loader": "^5.2.6",
"cypress": "^7.5.0",
"eslint": "^7.28.0",
"eslint-config-marudor": "^8.0.1",
"eslint-import-resolver-typescript": "^2.4.0",
"eslint-import-resolver-webpack": "^0.13.1",
"eslint-plugin-cypress": "^2.11.3",
"file-loader": "^6.2.0",
"jest": "^27.0.4",
"jest-watch-typeahead": "^0.6.4",
"lint-staged": "^11.0.0",
"ncp": "^2.0.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.3.1",
"react-refresh": "^0.10.0",
"rimraf": "^3.0.2",
"style-loader": "^2.0.0",
"terser-webpack-plugin": "^5.1.3",
"typescript": "4.3.2",
"url-loader": "^4.1.1",
"wait-for": "^2.1.1",
"webpack": "^5.38.1",
"webpack-bundle-analyzer": "^4.4.2",
"webpack-cli": "^4.7.2",
"webpack-hot-middleware": "^2.25.0",
"workbox-webpack-plugin": "^6.1.5"
},
"dependencies": {
"client": "workspace:*",
"core-js": "^3.14.0",
"husky": "^6.0.0",
"server": "workspace:*"
},
"resolutions": {
"iconv-lite": "^0.5.1",
"node-fetch": "^2",
"ejs": "^3",
"lodash": "^4.17.15",
"chokidar": "^3",
"lru-cache": "^6",
"ws": "^7",
"typescript": "^4"
},
"repository": {
"type": "git",
"url": "git+https://github.com/marudor/BahnhofsAbfahrten.git"
},
"author": "marudor",
"bugs": {
"url": "https://github.com/marudor/BahnhofsAbfahrten/issues"
},
"keywords": [],
"contributors": [],
"homepage": "http://marudor.de",
"jest-junit": {
"output": "./reports/junitresults.xml"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
],
"rules": {
"footer-leading-blank": [
0
]
}
},
"prettier": {
"singleQuote": true,
"trailingComma": "all",
"printWidth": 80
}
}