forked from 0xmasoud/lenstube2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 969 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
{
"name": "lenstube",
"description": "Decentralized video-sharing social media platform.",
"version": "1.0.2-beta",
"private": true,
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev --parallel",
"lint": "turbo run lint",
"codegen": "graphql-codegen",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"check-format": "prettier --check \"**/*.{ts,tsx}\"",
"check-lint": "eslint . --ext .ts,.tsx",
"lint:fix": "eslint --fix ."
},
"devDependencies": {
"@graphql-codegen/cli": "^2.16.2",
"@graphql-codegen/fragment-matcher": "^3.3.1",
"@graphql-codegen/typescript": "^2.8.6",
"@graphql-codegen/typescript-operations": "^2.5.11",
"@graphql-codegen/typescript-react-apollo": "^3.3.6",
"prettier": "latest",
"turbo": "latest"
},
"engines": {
"node": ">=14.0.0"
},
"dependencies": {},
"packageManager": "[email protected]"
}