-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.53 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.53 KB
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": "csdr-cloud-spatial-app",
"version": "0.1.0",
"private": true,
"license": "Apache-2.0",
"author": "Nick Forbes-Smith",
"scripts": {
"build": "dotenvx run -- turbo build",
"dev": "dotenvx run -- turbo dev",
"lint": "turbo lint",
"typecheck": "turbo typecheck",
"typecheck:watch": "turbo typecheck:watch",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,md,scss,css,html}\"",
"ui": "pnpm --filter @repo/ui ui",
"create:migration": "dotenvx run -- turbo --filter @repo/server create:migration",
"migrate": "dotenvx run -- turbo migrate",
"drizzle-studio": "dotenvx run -- turbo --filter @repo/server drizzle-studio",
"seed": "dotenvx run -- turbo seed",
"test:unit": "dotenvx run -- turbo test:unit",
"prepare": "husky",
"pre-commit": "lint-staged",
"clean-deps": "rm -rf node_modules && pnpm -r exec rm -rf node_modules"
},
"devDependencies": {
"@dotenvx/dotenvx": "^1.51.1",
"@repo/eslint-config": "workspace:*",
"@repo/typescript-config": "workspace:*",
"@types/geojson": "^7946.0.16",
"husky": "^9.1.7",
"lint-staged": "^15.5.2",
"prettier": "catalog:",
"turbo": "2.1.1"
},
"packageManager": "pnpm@9.12.0",
"pnpm": {
"overrides": {
"next": "^15.2.6"
}
},
"engines": {
"node": ">=20.17.0"
},
"lint-staged": {
"**/*.{js,jsx,ts,tsx,md,scss,css,html}": [
"prettier --write"
],
"**/*.json": [
"prettier --write --parser json-stringify"
],
"**/*.{ts,tsx}": [
"pnpm lint --"
]
}
}