-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.91 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.91 KB
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
{
"name": "analytics-monorepo",
"version": "1.0.0",
"description": "Analytics platform monorepo with SDK, Console, Website and Server",
"private": true,
"workspaces": [
"packages/sdk",
"packages/console",
"packages/website",
"packages/server"
],
"scripts": {
"build": "bun build-console && bun build-sdk && bun start-server",
"dev": "concurrently \"bun run-console\" \"bun build-sdk\" \"bun run-server\"",
"build-console": "bun --cwd packages/console build",
"run-console": "bun --cwd packages/console dev",
"build-sdk": "bun --cwd packages/sdk build",
"build-website": "bun --cwd packages/website build",
"run-website": "bun --cwd packages/website dev",
"run-server": "bun --cwd packages/server dev",
"start-server": "bun --cwd packages/server start",
"publish-sdk": "bun --cwd packages/sdk publish",
"publish-sdk:dry": "bun --cwd packages/sdk publish:dry",
"version-sdk:patch": "bun --cwd packages/sdk version:patch",
"version-sdk:minor": "bun --cwd packages/sdk version:minor",
"version-sdk:major": "bun --cwd packages/sdk version:major",
"lint": "eslint packages/*/src --ext .ts,.vue,.js",
"lint:fix": "eslint packages/*/src --ext .ts,.vue,.js --fix",
"type-check": "bun type-check:sdk && bun type-check:console && bun type-check:website && bun type-check:server",
"type-check:sdk": "bun --cwd packages/sdk type-check",
"type-check:console": "bun --cwd packages/console type-check",
"type-check:website": "bun --cwd packages/website type-check",
"type-check:server": "bun --cwd packages/server type-check"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"@vue/eslint-config-typescript": "^12.0.0",
"concurrently": "^8.2.2",
"eslint": "^8.57.0",
"eslint-plugin-vue": "^9.20.1",
"typescript": "^5.3.3"
},
"engines": {
"bun": ">=1.0.0"
}
}