-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.18 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 2.18 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
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
{
"name": "react-across-monorepo",
"version": "1.0.0",
"license": "MIT",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,json,css,md,scss,sass}\"",
"lint": "yarn lint:check --fix",
"lint:check": "eslint . --max-warnings=0 --ext .ts,.tsx,.js,.jsx",
"test": "jest",
"test:coverage": "jest --coverage",
"type-check": "yarn workspaces run tsc --pretty --noEmit",
"test-all": "yarn lint:check && yarn type-check && yarn test",
"build": "preconstruct build",
"postinstall": "preconstruct dev",
"changeset": "changeset",
"version-packages": "changeset version",
"release": "yarn build && changeset publish"
},
"dependencies": {
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-error-boundary": "^3.0.2",
"uuid": "^8.3.0"
},
"devDependencies": {
"@babel/core": "^7.11.6",
"@babel/preset-env": "^7.11.5",
"@babel/preset-react": "^7.10.4",
"@babel/preset-typescript": "^7.10.4",
"@changesets/cli": "^2.10.3",
"@foreachbe/eslint-config-react-app": "^7.0.0",
"@preconstruct/cli": "^1.1.27",
"@types/jest": "^26.0.14",
"@types/node": "^14.11.2",
"@types/react": "^16.9.43",
"@types/react-dom": "^16.9.8",
"@types/uuid": "^8.3.0",
"@typescript-eslint/eslint-plugin": "^4.3.0",
"@typescript-eslint/parser": "^4.3.0",
"babel-eslint": "^10.1.0",
"babel-plugin-dev-expression": "0.2.2",
"eslint": "^7.10.0",
"eslint-plugin-flowtype": "^5.2.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.0.2",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-react": "^7.21.3",
"eslint-plugin-react-hooks": "^4.1.2",
"husky": "^4.2.5",
"jest": "^26.4.2",
"lint-staged": "^10.2.11",
"prettier": "^2.1.2",
"typescript": "^4.0.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.@(js|jsx|ts|tsx)": [
"yarn lint",
"yarn format"
],
"*.@(json|css|md|scss|sass)": [
"yarn format"
]
},
"prettier": {
"printWidth": 120
},
"preconstruct": {
"packages": [
"packages/*"
]
}
}