-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.45 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.45 KB
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
{
"author": "Evgeny Zhivitsa <evgeny.zhivitsa@gmail.com>",
"name": "microservices-starter",
"version": "0.1.0",
"description": "Starter for microservices application",
"keywords": [
"microfrontend",
"microservices",
"kafka",
"postgres",
"redis",
"oauth2",
"koa",
"react",
"mobx"
],
"homepage": "https://github.com/ezhivitsa/microservices-starter#readme",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/ezhivitsa/microservices-starter.git"
},
"private": true,
"scripts": {
"g:tsc": "cd $INIT_CWD && del dist/ && tsc && cpy '**/*' '!**/*.ts' '!**/*.tsx' ../dist/ --cwd=src/ --no-overwrite --parents",
"g:lint:tsc": "cd $INIT_CWD && tsc -p tsconfig.json --noEmit",
"g:lint:eslint": "cd $INIT_CWD && eslint \"$INIT_CWD/src/**/*.{ts,tsx}\"",
"g:lint:stylelint": "cd $INIT_CWD && stylelint \"$INIT_CWD/src/**/*.{css,pcss}\"",
"postinstall": "husky install"
},
"dependencies": {
"react": "17.0.2",
"react-router-dom": "5.3.0"
},
"devDependencies": {
"cpy-cli": "3.1.1",
"del-cli": "4.0.1",
"eslint": "7.30.0",
"husky": "6.0.0",
"lint-staged": "11.1.2",
"stylelint": "14.0.1",
"typescript": "4.3.5",
"winston": "3.3.3"
},
"workspaces": {
"packages": [
"src/packages/*",
"src/client-services/*",
"src/backend-services/*"
]
},
"devEngines": {
"node": ">=14.x",
"yarn": ">=3.0.2"
}
}