-
-
Notifications
You must be signed in to change notification settings - Fork 39
/
package.json
35 lines (35 loc) · 853 Bytes
/
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
{
"name": "trpc-sveltekit-monorepo",
"version": "0.0.0",
"description": "SvelteKit adapter for trpc.io",
"author": {
"name": "Ionut-Cristian Florescu",
"email": "[email protected]",
"url": "https://github.com/icflorescu"
},
"license": "ISC",
"private": true,
"type": "module",
"workspaces": [
"package",
"docs",
"examples/*"
],
"scripts": {
"dev": "turbo dev",
"build": "turbo build",
"start": "turbo preview",
"lint": "turbo lint",
"format": "turbo format"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^7.13.0",
"@typescript-eslint/parser": "^7.13.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-svelte3": "^4.0.0",
"prettier": "^3.3.2",
"prettier-plugin-svelte": "^3.2.4",
"turbo": "^1.12.4"
}
}