This repository was archived by the owner on Dec 16, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.62 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
{
"name": "@resembli/react-virtualized-window-root",
"version": "0.0.1",
"description": "root directory of @resembli/react-virtualized-window",
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/Resembli/react-virtualized-window.git"
},
"author": "Lee Beydoun",
"license": "MIT",
"bugs": {
"url": "https://github.com/Resembli/react-virtualized-window/issues"
},
"homepage": "https://github.com/Resembli/react-virtualized-window",
"devDependencies": {
"@changesets/changelog-github": "^0.4.2",
"@changesets/cli": "^2.20.0",
"@swc/cli": "^0.1.55",
"@swc/core": "^1.2.138",
"@trivago/prettier-plugin-sort-imports": "^3.1.1",
"@types/prettier": "^2.4.2",
"@types/react": "^17.0.39",
"@typescript-eslint/eslint-plugin": "^5.7.0",
"@typescript-eslint/parser": "^5.7.0",
"browserslist": "^4.19.1",
"eslint": "^8.5.0",
"eslint-plugin-react": "^7.27.1",
"eslint-plugin-react-hooks": "^4.3.0",
"husky": "^7.0.4",
"prettier": "^2.5.1",
"react": "^17.0.2",
"rimraf": "^3.0.2",
"typescript": "^4.5.4"
},
"scripts": {
"build": "echo no-op",
"prepare": "husky install",
"lint": "eslint . --ext .ts --ext .tsx --ext .js --ext .jsx --ignore-path .gitignore --max-warnings=0",
"prettier": "prettier --check ./**/*.{ts,tsx}",
"build-packages": "pnpm run build --stream --parallel --filter \"{packages}\"",
"ci:version": "pnpm changeset version && pnpm install --no-frozen-lockfile && git add .",
"ci:publish": "pnpm changeset tag && pnpm -r --filter \"{packages}\" publish --no-git-checks --access=public"
}
}