This repository was archived by the owner on Dec 28, 2024. It is now read-only.
-
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.58 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.58 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": "monster",
"private": true,
"scripts": {
"build": "turbo build",
"dev": "turbo dev",
"lint": "turbo lint",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"ggg": "yarn install --registry https://registry.yarnpkg.com/",
"stripe:login": "stripe login",
"stripe:listen": "stripe listen --forward-to localhost:3000/api/stripe/webhook",
"stripe:fixtures": "stripe fixtures apps/web/fixtures/stripe-fixtures.json",
"add-package": "sh ./add-package.sh",
"pretty": "prettier --write \"./**/*.{js,jsx,mjs,cjs,ts,tsx,json}\"",
"precommit": "lint-staged",
"db:push": "yarn workspace @monster/database prisma db push",
"db:migrate": "yarn workspace @monster/database prisma migrate dev",
"db:pull": "yarn workspace @monster/database prisma db pull",
"db:reset": "yarn workspace @monster/database prisma migrate reset",
"tsc": "tsc"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,json,md}": [
"prettier --write",
"git add"
]
},
"devDependencies": {
"@monster/database": "*",
"@monster/eslint-config": "*",
"@monster/typescript-config": "*",
"autoprefixer": "^10.4.19",
"eslint-plugin-turbo": "^2.0.7",
"husky": "^9.0.11",
"lint-staged": "^15.2.7",
"postcss": "^8.4.38",
"prettier": "^3.2.5",
"tailwindcss": "^3.4.3",
"turbo": "^2.0.7",
"typescript": "^5.3.3"
},
"engines": {
"node": ">=18.18.0"
},
"packageManager": "yarn@1.22.19",
"workspaces": [
"apps/*",
"packages/*"
],
"resolutions": {
"wrap-ansi": "7.0.0",
"string-width": "4.1.0"
}
}