-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
95 lines (95 loc) · 2.78 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
85
86
87
88
89
90
91
92
93
94
95
{
"name": "inreach",
"version": "0.100.0",
"private": true,
"license": "GPL-3.0-only",
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"build": "turbo run build",
"build:aws": "turbo run build:aws",
"clean": "turbo run clean:node && pnpm clean:node",
"clean:install": "pnpm clean && pnpm install",
"clean:node": "rm -rf ./node_modules || true",
"db:generate": "turbo run db:generate",
"deploy:aws": "turbo run deploy:aws",
"dev": "tsx ./lib/devmsg.ts",
"dev:all": "turbo run dev",
"dev:app": "turbo run dev --filter=app",
"dev:ui": "turbo run dev --filter=ui",
"dev:web": "turbo run dev --filter=web",
"docker:down": "tsx ./docker/docker-control.ts down",
"docker:up": "tsx ./docker/docker-control.ts up",
"format": "turbo run format --parallel",
"generate:data": "turbo run generate:data",
"postinstall": "tsx ./lib/postinstall.ts",
"knip": "knip -c ./knip.config.ts",
"lint": "TIMING=1 turbo run lint --parallel",
"lint:fix": "TIMING=1 turbo run lint:fix --parallel",
"lint:pkg": "sherif -r multiple-dependency-versions",
"lint:pkg:fix": "sherif --fix -r multiple-dependency-versions",
"lint:staged": "lint-staged",
"notify:install": "tsx ./lib/runInstall.ts",
"prepare": "husky",
"scripts:post-install": "turbo run post-install --continue",
"types:check": "turbo type-check",
"types:sync": "typesync"
},
"devDependencies": {
"@changesets/cli": "2.27.9",
"@turbo/gen": "2.2.3",
"@types/lint-staged": "13.3.0",
"@types/node": "20.17.0",
"@types/yargs": "17.0.33",
"@weareinreach/config": "workspace:*",
"@weareinreach/eslint-config": "workspace:*",
"boxen": "8.0.1",
"docker-compose": "0.24.8",
"dotenv": "16.4.5",
"dotenv-expand": "11.0.6",
"husky": "9.1.6",
"knip": "5.34.0",
"lint-staged": "15.2.10",
"prettier": "3.3.3",
"prettier-plugin-jsdoc": "1.3.0",
"prettier-plugin-packagejson": "2.5.3",
"prettier-plugin-prisma": "5.0.0",
"sherif": "0.11.0",
"tsx": "4.19.1",
"turbo": "2.2.3",
"typescript": "5.6.3",
"typesync": "0.13.2",
"yargs": "17.7.2"
},
"packageManager": "[email protected]",
"engines": {
"node": "^20.12.2",
"pnpm": "^9.0.0"
},
"pnpm": {
"peerDependencyRules": {
"allowedVersions": {
"typescript": "5",
"webpack": "5"
}
},
"overrides": {
"better-sqlite3@<9": "^9.0.0",
"sourcemap-codec": "npm:@jridgewell/sourcemap-codec"
},
"patchedDependencies": {
"@crowdin/[email protected]": "patches/@[email protected]",
"[email protected]": "patches/[email protected]",
"[email protected]": "patches/[email protected]",
"[email protected]": "patches/[email protected]"
}
},
"nextBundleAnalysis": {
"budget": 588800,
"budgetPercentIncreaseRed": 20,
"minimumChangeThreshold": 0,
"showDetails": true
}
}