-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.83 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
{
"publishConfig": {
"registry": "https://npmjs.com"
},
"name": "ra",
"version": "1.0.0",
"private": true,
"workspaces": [
"packages/*"
],
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/JaLe29/react-adminer.git"
},
"license": "MIT",
"scripts": {
"patch:production:package": "ts-node -r tsconfig-paths/register --project tsconfig.json --files ./scripts/patch-production-package.ts",
"publish": "ts-node -r tsconfig-paths/register --project tsconfig.json --files ./scripts/lib-publish.ts",
"watch:types": "yarn workspace @react-adminer/react-querier watch:types && fg",
"lint": "yarn workspaces foreach -v -p -i -j 30 run lint",
"build": "yarn workspaces foreach -v -p -i -j 30 run build",
"lint:fix": "yarn workspaces foreach -v -p -i -j 30 run lint:fix",
"clean": "yarn workspaces foreach -v -p -i -j 30 run clean && rimraf dist && rimraf .cache && rimraf node_modules"
},
"dependencies": {
"@babel/eslint-parser": "^7.17.0",
"@types/node": "^16.11.36",
"@types/prettier": "^2.6.1",
"@typescript-eslint/eslint-plugin": "^5.25.0",
"@typescript-eslint/parser": "^5.25.0",
"@yarnpkg/pnpify": "^4.0.0-rc.12",
"eslint": "^8.16.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^2.5.0",
"eslint-plugin-babel": "^5.3.1",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.26.1",
"eslint-plugin-react-hooks": "^4.2.0",
"prettier": "^2.6.2",
"rimraf": "^3.0.2",
"ts-node": "10.9.1",
"typescript": "~4.7.4",
"uuid": "^9.0.0",
"zip-dir": "^2.0.0"
},
"packageManager": "[email protected]",
"devDependencies": {
"@types/jest": "^28.1.3",
"@types/shelljs": "^0",
"jest": "^28.1.1",
"shelljs": "^0.8.5",
"tsconfig-paths": "^4.1.0"
}
}