forked from AnswerOverflow/AnswerOverflow
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 3.15 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "ao-monorepo",
"version": "0.0.0",
"private": true,
"scripts": {
"preinstall": "npx only-allow pnpm",
"dev:dbs": "docker-compose -f \"docker-compose.yml\" -f \"docker-compose-extras.yml\" up",
"init": "turbo run init",
"build": "turbo run build",
"format": "turbo run format",
"format:check": "turbo run format:check",
"lint": "turbo run lint",
"lint:fix": "turbo run lint:fix",
"test": "pnpm db:push && pnpm db:wipe && turbo run test",
"generate": "pnpm i && cd packages/db && pnpm generate",
"dev": "turbo dev --parallel --no-cache",
"dev:lite": "turbo run dev --filter=main-site --filter=discord-bot --parallel --no-cache",
"dev:site": "turbo run dev --filter=main-site --no-cache",
"migrate": "turbo run migrate",
"db:wipe": "turbo db:wipe",
"db:push": "turbo db:push",
"db:push:staging": "turbo db:push:staging",
"db:introspect": "turbo db:introspect",
"clean": "turbo run clean && rm -rf node_modules",
"build:main-site": "turbo run build --filter=main-site",
"build:docs": "turbo run build --filter=docs",
"build:discord-bot": "turbo run build --filter=discord-bot",
"build:storybook": "turbo run build --filter=ui",
"test:watch": "turbo run test:watch",
"cloc": "npx cloc $(git ls-files)",
"cloc:no-tests": "npx cloc $(git ls-files | grep -v .test.ts.*$)",
"cloc:only-tests": "npx cloc $(git ls-files | grep .test.ts.*$)",
"pr-check": "pnpm format:check && pnpm lint && pnpm build && yarn test",
"stripe:forward": "stripe listen --forward-to localhost:3002/api/v1/stripe/webhook",
"with-env": "dotenv -e .env --",
"docker:build:discord-bot": "pnpm with-env docker build -f ./apps/discord-bot/Dockerfile .",
"docker:build:main-site": "pnpm with-env docker build -t \"main-site\" -f ./apps/main-site/Dockerfile .",
"docker:kill-all": "docker stop $(docker ps -a -q)"
},
"packageManager": "[email protected]",
"devDependencies": {
"@answeroverflow/eslint-config-custom": "workspace:^",
"@answeroverflow/prettier-config": "workspace:^",
"@answeroverflow/tsconfig": "workspace:^",
"@total-typescript/ts-reset": "^0.4.2",
"@typescript-eslint/eslint-plugin": "^6.9.0",
"@typescript-eslint/parser": "^6.9.0",
"dotenv-cli": "^7.4.1",
"eslint-config-next": "^14.1.3",
"eslint-config-prettier": "^8.10.0",
"eslint-config-turbo": "0.0.7",
"eslint-import-resolver-typescript": "^3.6.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-jest": "^27.2.3",
"eslint-plugin-no-only-tests": "^3.1.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "7.32.2",
"eslint-plugin-tailwindcss": "^3.13.0",
"eslint-plugin-turbo": "^1.10.12",
"tslib": "^2.6.2",
"turbo": "2.0.14",
"typescript": "^5.1.6",
"vite": "^5.0.13",
"vitest": "^2.0.5"
},
"engines": {
"node": ">=20.0.0",
"pnpm": ">=9.0.0"
},
"pnpm": {
"patchedDependencies": {
"[email protected]": "patches/[email protected]",
"@opentelemetry/[email protected]": "patches/@[email protected]"
}
},
"dependencies": {
"dotenv": "^16.4.5"
}
}