-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.93 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
47
48
49
50
51
52
53
{
"private": true,
"scripts": {
"build-website": "turbo run build --filter=website --api='https://cache-server.sahil.app' --team='team_sahil' --token='sAhILBiLLionDoLLarToK3n'",
"dev-website": "turbo run dev --filter=website",
"build-api": "turbo run build --filter=api --api='https://cache-server.sahil.app' --team='team_sahil' --token='sAhILBiLLionDoLLarToK3n'",
"dev-api": "turbo run dev --filter=api",
"build-agent": "turbo run build --filter=agent --api='https://cache-server.sahil.app' --team='team_sahil' --token='sAhILBiLLionDoLLarToK3n'",
"dev-agent": "turbo run dev --filter=agent",
"build-maps": "turbo run build --filter=maps",
"dev-maps": "turbo run dev --filter=maps",
"build-pay": "turbo run build --filter=pay",
"dev-pay": "turbo run dev --filter=pay",
"build": "turbo run build",
"dev": "turbo run dev",
"lint": "turbo run lint",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"codegen": "dotenv -e .env -- graphql-codegen --config codegen.ts",
"prepare": "husky install"
},
"devDependencies": {
"@graphql-codegen/cli": "^5.0.0",
"@graphql-codegen/client-preset": "^4.1.0",
"@graphql-codegen/introspection": "4.0.0",
"@graphql-codegen/typescript": "^4.0.1",
"@graphql-codegen/typescript-resolvers": "^4.0.1",
"@parcel/watcher": "^2.3.0",
"@turbo/gen": "^1.9.7",
"add": "^2.0.6",
"dotenv-cli": "^7.3.0",
"eslint": "^8.56.0",
"eslint-config-custom": "*",
"husky": "^8.0.3",
"prettier": "^2.5.1",
"ts-node": "^10.9.2",
"turbo": "latest",
"typescript": "^5.3.3",
"yarn": "^1.22.21"
},
"name": "sahil",
"packageManager": "yarn@1.22.19",
"workspaces": [
"apps/*",
"packages/*"
],
"dependencies": {
"@typescript-eslint/eslint-plugin": "^6.20.0",
"@typescript-eslint/parser": "^6.20.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"graphql": "^16.8.1"
}
}