-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 2.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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "@castro/root",
"version": "0.0.1",
"scripts": {
"nx": "nx",
"build": "nx run-many -t build --exclude=@castro/root",
"build:packages": "nx run-many -t build --projects=packages/**",
"build:pnpm": "pnpm --filter @castro/packages build && pnpm --filter=!@castro/root -r --parallel build",
"dev": "pnpm --filter @castro/astro-app dev",
"dev:all": "pnpm -r --parallel dev",
"test": "nx run-many --target=test --all",
"test:types": "pnpm -r exec tsc --noEmit",
"test:lint": "eslint '{apps,packages}/**/src/**/*.{ts,tsx,js,jsx,json}'",
"test:format": "prettier -c '{apps,packages}/**/src/**/*.{ts,tsx,js,jsx,json}'",
"lint": "eslint --fix '{apps,packages}/**/src/**/*.{ts,tsx,js,jsx,json}'",
"format": "prettier --write '{apps,packages}/**/src/**/*.{ts,tsx,js,jsx,json}'",
"prepublishOnly": "pnpm run build",
"release": "HUSKY_BYPASS=true publish",
"clean": "pnpm clean:build && pnpm clean:nm",
"clean:build": "pnpm -r exec rm -rf dist build",
"clean:nm": "rm -rf node_modules && pnpm -r exec rm -rf node_modules",
"prepare": "husky install"
},
"devDependencies": {
"@changesets/cli": "latest",
"@nx/cypress": "latest",
"@nx/eslint-plugin": "latest",
"@nx/js": "latest",
"@nx/linter": "latest",
"@nx/rollup": "latest",
"@nx/vite": "latest",
"@nxext/capacitor": "latest",
"@nxtensions/astro": "latest",
"@types/node": "latest",
"@types/react": "^18.2.37",
"@types/react-dom": "^18.2.15",
"@typescript-eslint/eslint-plugin": "latest",
"@typescript-eslint/parser": "latest",
"chalk": "^5.3.0",
"create-ts-index": "latest",
"eslint": "latest",
"eslint-config-prettier": "latest",
"eslint-plugin-import": "latest",
"eslint-plugin-jsx-a11y": "latest",
"eslint-plugin-prettier": "latest",
"eslint-plugin-react": "latest",
"eslint-plugin-react-hooks": "latest",
"eslint-plugin-simple-import-sort": "latest",
"husky": "latest",
"nx": "latest",
"prettier": "latest",
"terser": "latest",
"tsup": "latest",
"typescript": "latest",
"vite": "latest",
"vite-plugin-dts": "latest",
"vite-tsconfig-paths": "^4.2.1",
"vitest": "latest"
},
"resolutions": {
"@react-navigation/core": "7.0.0-alpha.4",
"@react-navigation/native": "7.0.0-alpha.4",
"react": "18.2.0",
"react-dom": "18.2.0"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"engines": {
"node": "20.x",
"pnpm": "8.x"
},
"nx": {
"targets": {
"build": {
"outputs": [
"{projectRoot}/dist"
]
}
}
}
}