-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
54 lines (54 loc) · 1.93 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
{
"name": "gel-next",
"version": "0.0.1",
"private": true,
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"build": "turbo run build --filter=./packages/* --no-daemon",
"build:watch": "turbo run build:watch --filter=./packages/* --no-daemon",
"check-types": "turbo run check-types --filter=./packages/* --no-daemon",
"dev": "turbo run dev --parallel --no-daemon",
"format": "prettier --check \"**/{.vscode/*,*.ts,*.tsx,*.js,*.json,*.md}\"",
"format:fix": "prettier --write \"**/{.vscode/*,*.ts,*.tsx,*.js,*.json,*.md}\"",
"lint": "turbo run lint --no-daemon",
"lint:fix": "turbo run lint:fix --no-daemon",
"new:package": "node ./helpers/create-package/index.js",
"nuke": "pnpm nuke:node_modules && pnpm nuke:dist && pnpm nuke:next",
"nuke:node_modules": "find . -name 'node_modules' -type d -prune -print -exec rm -rf '{}' \\;",
"nuke:dist": "find . -name 'dist' -type d -prune -print -exec rm -rf '{}' \\;",
"nuke:next": "find . -name '.next' -type d -prune -print -exec rm -rf '{}' \\;",
"prepare": "husky install",
"test": "turbo run test --filter=./packages/* --no-daemon",
"ci:build": "pnpm install --frozen-lockfile && pnpm format && pnpm build && pnpm lint && pnpm check-types && pnpm test",
"ci:publish": "pnpm build && changeset publish",
"ci:test": "pnpm format && pnpm lint && pnpm check-types && pnpm test",
"migrate": "node script.cjs"
},
"devDependencies": {
"@changesets/cli": "^2.25.2",
"@westpac/eslint-config": "workspace:~",
"@westpac/ts-config": "workspace:~",
"eslint-config-turbo": "^0.0.7",
"husky": "^8.0.3",
"prettier": "^3.2.5",
"shx": "^0.3.4",
"turbo": "^1.9.0"
},
"engines": {
"node": ">=20"
},
"packageManager": "[email protected]",
"dependencies": {
"typescript": "~5.5.4"
},
"pnpm": {
"overrides": {
"braces": "3.0.3",
"micromatch": "4.0.6",
"json5": "1.0.2"
}
}
}