-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 859 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": "@quotes/auth-proxy",
"private": true,
"type": "module",
"scripts": {
"build": "nitro build",
"clean": "rm -rf .turbo node_modules",
"dev": "nitro dev --port 3001",
"lint": "eslint .",
"format": "prettier --check . --ignore-path ../../.gitignore",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@auth/core": "0.27.0"
},
"devDependencies": {
"@quotes/eslint-config": "^0.2.0",
"@quotes/prettier-config": "^0.1.0",
"@quotes/tailwind-config": "^0.1.0",
"@quotes/tsconfig": "^0.1.0",
"@types/node": "^20.11.25",
"eslint": "^8.57.0",
"h3": "^1.11.1",
"nitropack": "^2.8.1",
"prettier": "^3.2.5",
"typescript": "^5.3.3"
},
"eslintConfig": {
"root": true,
"extends": [
"@quotes/eslint-config/base"
]
},
"prettier": "@quotes/prettier-config"
}