-
-
Notifications
You must be signed in to change notification settings - Fork 88
/
package.json
55 lines (55 loc) · 2 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
{
"private": true,
"name": "snailycad",
"version": "1.80.2",
"scripts": {
"start": "pnpm concurrently \"pnpm --filter \"@snailycad/client\" start\" \"pnpm --filter \"@snailycad/api\" generate && pnpm --filter \"@snailycad/api\" start\"",
"full-start": "git stash && git pull && pnpm install && node scripts/copy-env.mjs --client --api && pnpm run build && pnpm run start",
"build": "pnpm turbo run build --filter=\"{packages/*}\" && pnpm turbo run build --filter=\"{apps/*}\"",
"dev": "docker compose up -d && pnpm turbo run watch --parallel --concurrency 11",
"format": "prettier --write \"./(packages|apps)/**/**/*.{js,jsx,ts,mjs,tsx,md,css,json}\" --ignore-path .gitignore",
"lint": "pnpm eslint . --ext .ts,.js,.tsx,.jsx,.mjs",
"lint:fix": "pnpm eslint . --ext .ts,.js,.tsx,.jsx,.mjs --fix",
"prepare": "husky install",
"bump-version": "node scripts/bump-version.mjs",
"create-images-domain": "node scripts/create-images-domain.mjs",
"postinstall": "husky install",
"typecheck": "pnpm turbo run typecheck"
},
"license": "MIT",
"devDependencies": {
"@casperiv/eslint-config": "8.0.0",
"@casperiv/eslint-config-next": "8.0.0",
"@casperiv/eslint-config-react": "8.0.0",
"eslint": "8.56.0",
"eslint-plugin-deprecation": "^2.0.0",
"lerna": "^8.1.3",
"lint-staged": "^15.2.5"
},
"lint-staged": {
"*.{js,jsx,json,ts,tsx,md,mdx,css,html,yml,yaml,scss,sass}\"": "prettier --write --ignore-path .prettierignore"
},
"engines": {
"node": ">=18.16.0"
},
"dependencies": {
"@faker-js/faker": "^8.4.1",
"colorette": "2.0.20",
"concurrently": "^8.2.2",
"copy": "^0.3.2",
"dotenv": "^16.4.5",
"husky": "^8.0.3",
"prettier": "3.3.1",
"turbo": "2.0.3"
},
"pnpm": {
"overrides": {
"glob-parent@<5.1.2": ">=5.1.2",
"zod@<=3.22.2": ">=3.22.3",
"postcss@<8.4.31": ">=8.4.31",
"undici@<5.26.2": ">=5.26.2",
"@babel/traverse@<7.23.2": ">=7.23.2"
}
},
"packageManager": "[email protected]"
}