forked from weareinreach/InReach
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
120 lines (120 loc) · 3.38 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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
{
"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",
"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",
"lint:pkg:fix": "sherif --fix",
"lint:staged": "lint-staged",
"notify:install": "tsx ./lib/runInstall.ts",
"prepare": "tsx ./lib/prepare.ts",
"scripts:post-install": "turbo run post-install --continue",
"types:check": "turbo type-check",
"types:sync": "typesync"
},
"devDependencies": {
"@changesets/cli": "2.27.1",
"@turbo/gen": "1.11.3",
"@types/lint-staged": "13.3.0",
"@types/node": "20.11.5",
"@weareinreach/config": "workspace:*",
"@weareinreach/eslint-config": "0.100.0",
"boxen": "7.1.1",
"dotenv": "16.3.1",
"husky": "8.0.3",
"knip": "4.0.3",
"lint-staged": "15.2.0",
"prettier": "3.2.4",
"prettier-plugin-jsdoc": "1.3.0",
"prettier-plugin-packagejson": "2.4.9",
"prettier-plugin-prisma": "5.0.0",
"sherif": "0.7.0",
"tsx": "4.7.0",
"turbo": "1.11.3",
"typescript": "5.3.3",
"typesync": "0.12.1"
},
"packageManager": "[email protected]",
"engines": {
"node": "^20.0.0",
"pnpm": "^8.10.5"
},
"nextBundleAnalysis": {
"budget": 588800,
"budgetPercentIncreaseRed": 20,
"minimumChangeThreshold": 0,
"showDetails": true
},
"pnpm": {
"overrides": {
"@floating-ui/react-dom-interactions": "npm:@floating-ui/react@^0.17.0",
"@npmcli/move-file": "npm:@npmcli/fs@^2.0.0",
"axe-core": "^4.7.0",
"chokidar": ">=3.0.0",
"crypto-js@<=4.1.1": "^4.2.0",
"csstype": "^3.1.2",
"eslint-plugin-import": "npm:eslint-plugin-i",
"eslint-plugin-node": "npm:eslint-plugin-n",
"glob-parent@<5.1.2": "^5.1.2",
"http-cache-semantics@<=4.1.0": "^4.1.1",
"listr2@<5": "^5.0.5",
"micromatch": ">=4.0.0",
"[email protected]": "1.2.1",
"node-fetch@<2.6.7": "^2.6.7",
"package-json@<7": "^7.0.0",
"postcss@^8": "^8.4.31",
"react-dom@<18": "^18",
"react@<18": "^18",
"sane": ">=5.0.0",
"sourcemap-codec": "npm:@jridgewell/sourcemap-codec@^1.4.14",
"trim-newlines@<3.0.1": "^3.0.1",
"trim@<0.0.3": "^0.0.3",
"tsconfig-paths": ">=4.0.0",
"undici@<=5.8.1": "^5.8.2",
"uuid": ">=9.0.0"
},
"patchedDependencies": {
"@crowdin/[email protected]": "patches/@[email protected]",
"[email protected]": "patches/[email protected]"
},
"peerDependencyRules": {
"allowedVersions": {
"babel-loader": "9",
"i18next-browser-languagedetector": "7",
"i18next-http-backend": "2",
"msw": "1",
"next": "13",
"prisma": "4",
"react": "18",
"react-dom": "18",
"react-i18next": "12",
"sanity": "3",
"typescript": "5",
"webpack": "5"
}
}
}
}