forked from icflorescu/trpc-sveltekit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 852 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": "^5.55.0",
"@typescript-eslint/parser": "^5.55.0",
"eslint": "^8.36.0",
"eslint-config-prettier": "^8.7.0",
"eslint-plugin-svelte3": "^4.0.0",
"prettier": "^2.8.4",
"prettier-plugin-svelte": "^2.9.0",
"turbo": "^1.8.3"
}
}