-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.55 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.55 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
{
"name": "@solid-bricks/monorepo",
"version": "1.0.0",
"private": true,
"scripts": {
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint:eslint": "eslint --cache . --ext .js,.ts,.tsx,.jsx,.cjs,.mjs,.mts,.cts",
"lint:eslint:fix": "eslint --cache . --ext .js,.ts,.tsx,.jsx.cjs,.mjs,.mts,.cts --fix",
"lint:ts:all": "pnpm -r --if-present run lint:ts",
"release": "pnpm run build:packages && changeset publish",
"build:packages": "pnpm --filter ./packages/* --if-present run build",
"build:examples": "pnpm --filter ./examples/* --if-present run build",
"test:packages": "pnpm --filter ./packages/* --if-present run test",
"build:examples:gh-pages": "pnpm --filter ./examples/* --if-present run build:gh-pages",
"prepare": "husky install",
"pre-commit:monorepo": "lint-staged",
"pre-commit:all": "pnpm run pre-commit:monorepo"
},
"repository": {
"type": "git",
"url": "git+https://github.com/FaberVitale/solid-bricks.git"
},
"packageManager": "pnpm@7.3.0",
"devDependencies": {
"@changesets/cli": "^2.22.0",
"@typescript-eslint/eslint-plugin": "^5.26.0",
"@typescript-eslint/parser": "^5.26.0",
"eslint": "^8.16.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^8.0.1",
"lint-staged": "^12.4.2",
"prettier": "2.6.2",
"typescript": "^4.6.4"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/FaberVitale/solid-bricks/issues"
},
"homepage": "https://github.com/FaberVitale/solid-bricks#readme"
}