-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
84 lines (84 loc) · 2.8 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
{
"name": "reactools",
"version": "0.0.0",
"license": "MIT",
"private": true,
"packageManager": "[email protected]",
"scripts": {
"fix": "run-s lint:fix prettier:fix",
"clean": "lerna exec -- rimraf dist typings coverage",
"release": "yarn workspace:reactools release",
"lint": "eslint ./ --ext js,jsx,ts,tsx",
"lint:fix": "eslint ./ --ext js,jsx,ts,tsx --fix",
"prettier": "prettier --check ./**/*.{js,jsx,ts,tsx}",
"prettier:fix": "prettier --write ./**/*.{js,jsx,ts,tsx}",
"test": "jest --passWithNoTests",
"test:all": "lerna exec -- jest --passWithNoTests",
"test:watch": "yarn test --watchAll",
"build:docs": "yarn workspace:docs build && yarn workspace:docs export",
"build:reactools": "yarn workspace:reactools build",
"workspace:docs": "yarn workspace docs",
"workspace:reactools": "yarn workspace @hitechline/reactools"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hitechline/reactools.git"
},
"workspaces": {
"packages": [
"docs",
"reactools",
"shared/semantic-release-git"
]
},
"engines": {
"node": ">=12"
},
"dependencies": {
"fast-glob": "3.2.11"
},
"devDependencies": {
"@hitechline/eslint-config": "2.0.3",
"@semantic-release/changelog": "5.0.1",
"@semantic-release/commit-analyzer": "8.0.1",
"@semantic-release/git": "9.0.1",
"@semantic-release/github": "7.2.3",
"@semantic-release/npm": "7.0.10",
"@semantic-release/release-notes-generator": "9.0.3",
"@testing-library/jest-dom": "5.14.1",
"@testing-library/react": "11.2.7",
"@testing-library/react-hooks": "7.0.2",
"@types/jest": "26.0.24",
"@types/react": "17.0.40",
"@types/react-dom": "17.0.13",
"@typescript-eslint/eslint-plugin": "4.28.5",
"@typescript-eslint/parser": "4.28.5",
"conventional-changelog-angular": "5.0.13",
"conventional-changelog-conventionalcommits": "4.6.3",
"esbuild": "0.12.26",
"eslint": "7.29.0",
"eslint-config-airbnb": "18.2.1",
"eslint-config-prettier": "8.3.0",
"eslint-import-resolver-typescript": "2.4.0",
"eslint-plugin-import": "2.23.4",
"eslint-plugin-import-helpers": "1.1.0",
"eslint-plugin-jsx-a11y": "6.4.1",
"eslint-plugin-prettier": "3.4.0",
"eslint-plugin-react": "7.24.0",
"eslint-plugin-react-hooks": "4.2.0",
"eslint-plugin-testing-library": "4.6.0",
"jest": "27.0.6",
"lerna": "4.0.0",
"node-env-run": "4.0.2",
"npm-run-all": "4.1.5",
"prettier": "2.3.2",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-test-renderer": "17.0.2",
"rimraf": "3.0.2",
"semantic-release": "19.0.3",
"ts-jest": "27.0.7",
"tsc-alias": "1.3.9",
"typescript": "4.3.5"
}
}