-
Notifications
You must be signed in to change notification settings - Fork 47
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 2.23 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 2.23 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
48
49
50
51
52
53
54
{
"name": "powersync-service",
"version": "0.0.0",
"preview": true,
"description": "PowerSync Service source-available monorepo",
"license": "FSL-1.1-ALv2",
"keywords": [],
"author": "PowerSync",
"scripts": {
"check-updates": "ncu -u --deep",
"validate:tsconfig-references": "node scripts/validate-tsconfig-references.mts",
"format": "prettier --write .",
"format:check": "prettier --check .",
"format:dirty": "{ git diff --name-only --diff-filter=ACMR -z; git diff --name-only --cached --diff-filter=ACMR -z; git ls-files --others --exclude-standard -z; } | sort -zu | xargs -0 -r prettier --write --ignore-unknown",
"lint-staged": "./scripts/lint-staged.sh",
"build": "tsc -b && pnpm run -r build:extra",
"build:production": "NODE_ENV=production pnpm run -r build",
"build:ts": "tsc -b",
"watch:ts": "tsc -b -w --preserveWatchOutput",
"watch:service": "concurrently --passthrough-arguments \"pnpm watch:ts\" \" pnpm start:service {@}\" -- ",
"start:service": "pnpm --filter @powersync/service-image watch",
"clean:modules": "rm -rf node_modules && pnpm -r exec rm -rf node_modules",
"clean": "pnpm run -r clean",
"release": "pnpm build:production && pnpm changeset publish",
"test:core": "pnpm run -r --filter '!./modules/*' test",
"configure-hooks": "husky"
},
"devDependencies": {
"@changesets/cli": "^2.27.8",
"@pnpm/workspace.projects-reader": "^1000.0.43",
"@types/node": "^22.16.2",
"@vitest/coverage-v8": "catalog:",
"@vitest/ui": "catalog:",
"async": "^3.2.4",
"bson": "^6.10.4",
"concurrently": "^8.2.2",
"fast-glob": "^3.3.3",
"husky": "^9.1.7",
"inquirer": "^9.2.7",
"npm-check-updates": "^17.1.2",
"prettier": "^3.4.1",
"prettier-plugin-embed": "^0.4.15",
"prettier-plugin-organize-imports": "^4.3.0",
"prettier-plugin-sql": "^0.18.1",
"rsocket-core": "1.0.0-alpha.3",
"rsocket-websocket-client": "1.0.0-alpha.3",
"semver": "^7.5.4",
"typescript": "catalog:",
"vite": "^8.0.9",
"vitest": "catalog:",
"ws": "^8.2.3"
},
"packageManager": "pnpm@10.28.2+sha512.41872f037ad22f7348e3b1debbaf7e867cfd448f2726d9cf74c08f19507c31d2c8e7a11525b983febc2df640b5438dee6023ebb1f84ed43cc2d654d2bc326264"
}