-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.84 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.84 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
55
56
57
58
59
60
61
62
{
"name": "tripie",
"packageManager": "pnpm@10.33.0",
"repository": "git://github.com/Pyotato/Tripie.git",
"main": "index.js",
"type": "module",
"engines": {
"node": ">=20"
},
"scripts": {
"build": "turbo build",
"build:docs": "turbo run build --filter=docs",
"chromatic": "turbo run chromatic -- --force-rebuild --filter=docs",
"build:api": "turbo run build:api --filter=api",
"dev": "turbo dev",
"lint": "turbo lint",
"lint:fix": "turbo lint:fix",
"prettier": "prettier --check '**/*.{ts,tsx,js,jsx,json}'",
"prettier:fix": "prettier --write '**/*.{ts,tsx,js,jsx,json}'",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"postinstall": "patch-package",
"prepare": "husky",
"test": "turbo run test",
"test:watch": "turbo run test:watch",
"clean": "turbo run clean && rm -rf ./node_modules && pnpm i --frozen-lockfile",
"typecheck": "turbo typecheck --filter=web",
"db:generate": "turbo run db:generate",
"db:migrate": "turbo run db:migrate",
"changeset": "changeset",
"version-packages": "changeset version",
"release": "turbo run build --filter=@tripie-pyotato/design-system && changeset publish"
},
"dependencies": {
"@changesets/cli": "^2.28.1",
"@prisma/client": "^6.2.1",
"turbo": "^2.8.21"
},
"devDependencies": {
"eslint": "^9.8.0",
"globals": "^15.9.0",
"husky": "^9.0.11",
"identity-obj-proxy": "^3.0.0",
"patch-package": "^8.0.0",
"prettier": "^3.3.3",
"prisma": "^6.2.1",
"rimraf": "^6.0.1",
"tsup": "^8.1.2",
"turbo": "^2.0.6"
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx}": [
"eslint --cache --fix",
"prettier --cache --write"
]
},
"nextBundleAnalysis": {
"budget": 358400,
"budgetPercentIncreaseRed": 20,
"minimumChangeThreshold": 0,
"showDetails": true
}
}