-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
49 lines (49 loc) · 1.71 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
{
"name": "ore-ui-meta-repo",
"private": true,
"workspaces": [
"examples/**/*",
"packages/**/*"
],
"scripts": {
"format": "prettier --write \"**/*.@(json|js|css|mdx|md|tsx|ts)\"",
"build": "yarn workspaces foreach --topological --verbose run build",
"publish": "yarn workspaces foreach --topological --no-private npm publish --tolerate-republish --access public",
"test": "cross-env NODE_ENV=test jest --coverage",
"lint": "eslint .",
"package": "yarn workspaces foreach --topological --verbose pack --out=%s-%v.tgz && ts-node ./scripts/moveAllPackagedToArtifacts.ts"
},
"devDependencies": {
"@babel/core": "7.13.16",
"@babel/plugin-transform-modules-commonjs": "7.13.8",
"@babel/plugin-transform-react-jsx": "7.13.12",
"@babel/preset-typescript": "7.13.0",
"@jest/core": "26.6.3",
"@testing-library/dom": "7.30.4",
"@testing-library/jest-dom": "5.12.0",
"@types/fs-extra": "^9.0.12",
"@types/glob": "^7",
"@types/prettier": "^2",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^5.45.1",
"babel-jest": "^26.0.1",
"chalk": "^4.1.2",
"cross-env": "^7.0.3",
"eslint": "^7.25.0",
"eslint-config-prettier": "^6.11.0",
"eslint-import-resolver-typescript": "^3.5.2",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.23.2",
"eslint-plugin-react-hooks": "^4.1.1",
"eslint-plugin-require-in-package": "^1.0.3",
"fs-extra": "^10.0.0",
"glob": "^7.1.7",
"jest": "^26.1.0",
"jest-junit-reporter": "^1.1.0",
"jest-sonar-reporter": "2.0.0",
"prettier": "^2.3.2",
"ts-node": "^10.9.1"
},
"packageManager": "[email protected]"
}