-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.02 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
{
"name": "svelte-starter-kit",
"private": true,
"version": "0.0.0",
"description": "PNPM + Turborepo + Sveltekit",
"author": "Sumanth Chinthagunta",
"keywords": [
"Sveltekit",
"Svelte",
"PNPM",
"Turborepo",
"Monorepo"
],
"repository": {
"type": "git",
"url": "https://github.com/xmlking/svelte-starter-kit.git"
},
"bugs": {
"url": "https://github.com/xmlking/svelte-starter-kit/issues"
},
"license": "MIT",
"workspaces": [
"apps/**",
"packages/**"
],
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"lint": "turbo run lint",
"format": "prettier --write .",
"clean": "git clean -fXd",
"untracked": "git clean -f -d"
},
"devDependencies": {
"@changesets/cli": "2.26.1",
"eslint": "8.42.0",
"eslint-config-custom": "workspace:*",
"prettier": "2.8.8",
"prettier-plugin-svelte": "2.10.1",
"turbo": "1.10.3"
},
"packageManager": "pnpm@8.6.0",
"engines": {
"pnpm": ">=8.6.0"
},
"type": "module"
}