-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
46 lines (46 loc) · 1.33 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
{
"name": "dirzip",
"author": "Dillon Raphael",
"license": "MIT",
"keywords": ["community", "nextjs"],
"private": true,
"workspaces": [
"packages/*",
"apps/web"
],
"scripts": {
"build": "turbo build",
"clean": "pnpm clean:workspaces && rm -rf node_modules",
"clean:workspaces": "turbo clean",
"db:generate": "turbo db:generate",
"db:push": "turbo db:push",
"db:reset": "turbo db:reset",
"db:seed": "turbo db:seed",
"dev": "turbo dev",
"minio": "minio server ./minio-data/",
"dev:tunnel": "ssh -o ServerAliveInterval=60 -R 80:localhost:3000 localhost.run",
"stripe:dev": "stripe listen --forward-to http://localhost:3000/api/webhooks/billing",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"lint": "turbo lint",
"lint:fix": "turbo lint:fix",
"type-check": "turbo type-check"
},
"dependencies": {
"eslint": "^8.40.0",
"@types/eslint": "^8.37.0",
"@typescript-eslint/eslint-plugin": "^5.59.2",
"@typescript-eslint/parser": "^5.59.2",
"eslint-config-next": "^13.4.1",
"eslint-config-prettier": "^8.8.0",
"eslint-config-turbo": "^1.9.3",
"eslint-plugin-react": "7.32.2",
"prettier": "^2.8.1",
"turbo": "^1.6.3",
"typescript": "5.1.6"
},
"prettier": {
"singleQuote": false,
"semi": false,
"trailingComma": "es5"
}
}