-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.66 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
{
"name": "galactiks",
"version": "0.0.0",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/thegalactiks/explorer.git"
},
"workspaces": [
"packages/adapters/*",
"packages/*"
],
"engines": {
"node": ">=18.0.0",
"pnpm": ">=8.4.0"
},
"packageManager": "[email protected]",
"scripts": {
"release": "pnpm run build && changeset publish",
"build": "turbo run build --filter=\"@galactiks/*\"",
"test": "turbo run test --filter=\"@galactiks/*\"",
"build:ci": "turbo run build:ci --filter=\"@galactiks/*\"",
"format": "pnpm run format:code",
"format:ci": "pnpm run format:imports && pnpm run format:code",
"format:code": "prettier -w \"**/*\" --ignore-unknown --cache",
"format:imports": "organize-imports-cli ./packages/*/tsconfig.json ./packages/*/*/tsconfig.json",
"version": "changeset version && pnpm install --no-frozen-lockfile && pnpm run format",
"lint": "eslint --cache ./packages --fix",
"prepare": "husky install",
"preinstall": "npx only-allow pnpm"
},
"devDependencies": {
"@changesets/changelog-github": "0.5.0",
"@changesets/cli": "2.27.9",
"@types/node": "20.16.15",
"@typescript-eslint/eslint-plugin": "7.18.0",
"@typescript-eslint/parser": "7.18.0",
"eslint": "8.57.1",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-prettier": "5.2.1",
"husky": "9.1.6",
"lint-staged": "15.2.10",
"organize-imports-cli": "0.10.0",
"prettier": "3.3.3",
"prettier-plugin-astro": "0.14.1",
"turbo": "2.2.3",
"typescript": "5.6.3"
},
"lint-staged": {
"*.ts": "eslint --cache --cache-location .eslintcache --fix"
}
}