forked from oneezy/monorepo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.26 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
{
"type": "module",
"name": "sveltekit-turborepo",
"description": "PNPM + Turborepo + Sveltekit",
"version": "0.0.0",
"author": "Scavenger Dev Team",
"keywords": [
"Svelte",
"Sveltekit",
"Turborepo",
"PNPM",
"Monorepo"
],
"repository": {
"type": "git",
"url": "https://github.com/oneezy/monorepo.git"
},
"main": "index.js",
"license": "MIT",
"workspaces": [
"apps/**",
"packages/**"
],
"scripts": {
"preinstall": "pnpm exec inherit -u",
"postinstall": "pnpm exec ./.sh/symlinks.sh",
"build": "turbo run build",
"dev": "turbo run dev --parallel",
"preview": "turbo run preview",
"lint": "turbo run lint",
"test": "turbo run test",
"prepare": "husky install",
"plop": "plop",
"symlinks": "pnpm exec ./.sh/symlinks.sh",
"clean": "git clean -fXd",
"untracked": "git clean -f -d"
},
"devDependencies": {
"@changesets/cli": "^2.25.2",
"@commitlint/cli": "^17.3.0",
"@commitlint/config-conventional": "^17.3.0",
"@packages/inherit": "workspace:0.0.0",
"@packages/minify": "workspace:0.0.0",
"autoprefixer": "^10.4.13",
"husky": "^8.0.2",
"lint-staged": "^12.5.0",
"plop": "^3.1.1",
"prettier": "^2.8.0",
"svelte-preprocess": "^5.0.3",
"turbo": "latest",
"vite": "^4.2.0"
},
"packageManager": "[email protected]"
}