-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
54 lines (54 loc) · 1.3 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
{
"name": "monoreact-root",
"version": "0.1.0",
"private": true,
"license": "MIT",
"author": {
"name": "Max Tarsis",
"email": "tarsis.maksym@gmail.com",
"url": "https://github.com/tarsinzer"
},
"workspaces": [
"cli",
"example-app/packages/*"
],
"scripts": {
"cpd": "jscpd **/src",
"postinstall": "yarn build && yarn example:install",
"example:install": "cd example-app && yarn install",
"build": "cd cli && yarn build",
"start": "cd cli && yarn start",
"lint": "cd cli && yarn lint",
"test": "cd cli && yarn test",
"ci": "yarn install && yarn add ./cli --D -W && yarn test"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "5.42.0",
"@typescript-eslint/parser": "5.42.0",
"eslint": "8.51.0",
"eslint-config-prettier": "8.5.0",
"eslint-config-react-app": "6.0.0",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-promise": "6.1.1",
"eslint-plugin-sonarjs": "0.16.0",
"husky": "4.3.8",
"jscpd": "3.5.10",
"lint-staged": "13.0.3",
"monoreact": "*",
"prettier": "2.7.1",
"yarn": "1.22.19"
},
"resolutions": {
"tslib": "2.4.1"
},
"keywords": [
"cli",
"microfrontend",
"workspaces",
"submodules",
"monorepo",
"react",
"typescript",
"rollup"
]
}