-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
62 lines (62 loc) · 2.75 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
{
"private": true,
"workspaces": [
"packages/*"
],
"engines": {
"node": ">=16"
},
"type": "module",
"scripts": {
"build": "run-s build:prisma-generate build:prisma build:ap build:frontend build:tsc build:cli build:webcomponent",
"build:docker": "run-s build build:docs",
"build:tsc": "tsc --build",
"build:prisma-generate": "yarn --cwd packages/repco-prisma-generate build",
"build:prisma": "yarn --cwd packages/repco-prisma build",
"build:ap": "yarn --cwd packages/repco-activitypub build",
"build:cli": "yarn --cwd packages/repco-cli build",
"build:frontend": "yarn --cwd packages/repco-frontend build",
"build:docs": "run-s build:docs-core build:docs-website",
"build:docs-website": "yarn --cwd packages/repco-docs-website build",
"build:docs-core": "yarn --cwd packages/repco-core docs",
"build:webcomponent": "yarn --cwd packages/repco-webcomponent build",
"dev:server": "yarn --cwd packages/repco-server dev",
"dev:frontend": "yarn --cwd packages/repco-frontend dev",
"dev:docs": "yarn --cwd packages/repco-docs-website dev",
"dev:webcomponent": "yarn --cwd packages/repco-webcomponent dev",
"start:frontend": "yarn --cwd packages/repco-frontend start",
"start:docs": "yarn --cwd packages/repco-docs-website start",
"watch": "run-p watch:*",
"watch:tsc": "tsc --build --watch",
"watch:cli-bundle": "yarn --cwd packages/repco-cli watch:bundle",
"build-and-test": "yarn --frozen-lockfile && run-s build test",
"test": "run-s test:*",
"test:core": "yarn --cwd packages/repco-core test",
"test:server": "yarn --cwd packages/repco-server test",
"migrate": "yarn --cwd packages/repco-prisma prisma migrate deploy",
"migrate:dev": "yarn --cwd packages/repco-prisma prisma migrate dev && yarn --cwd packages/repco-graphql export-schema",
"codegen": "yarn migrate:dev",
"server": "yarn --cwd packages/repco-server start",
"graphql": "yarn --cwd packages/repco-graphql export-schema && yarn --cwd packages/repco-graphql start",
"cli": "node packages/repco-cli/bin.js",
"lint": "eslint packages",
"lint:fix": "eslint packages --fix",
"update-ts-references": "node scripts/update-ts-references.js",
"frontend": "yarn --cwd packages/repco-frontend dev"
},
"devDependencies": {
"@mattinton/prettier-plugin-tidy-imports": "^1.1.12",
"@types/node": "^18.0.0",
"@types/source-map-support": "^0.5.6",
"@typescript-eslint/eslint-plugin": "^5.42.1",
"@typescript-eslint/parser": "^5.42.0",
"eslint": "^8.21.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"npm-run-all": "^4.1.5",
"prettier": "^2.7.1",
"source-map-support": "^0.5.21",
"typedoc": "^0.23.20",
"typescript": "^4.8"
}
}