-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
68 lines (68 loc) · 2.5 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
{
"name": "@localfirst/auth-monorepo",
"version": "6.0.0",
"private": true,
"description": "Monorepo for @localfirst/auth",
"repository": "http://github.com/local-first-web/auth",
"license": "MIT",
"author": {
"name": "Herb Caudill",
"email": "[email protected]"
},
"type": "module",
"scripts": {
"build": "pnpm -r build",
"dev:demo": "pnpm -F @localfirst/automerge-repo-todos dev",
"dev:taco": "pnpm -F @localfirst/taco-chat dev",
"dev:cy:taco": "pnpm -F @localfirst/taco-chat dev:cy",
"dev:cy": "run-p watch dev:cy:taco",
"dev:cy:debug": "cross-env CYPRESS_REMOTE_DEBUGGING_PORT=9222 pnpm dev:cy",
"dev": "run-p watch dev:demo",
"dev:relay": "pnpm -F @localfirst/taco-chat dev:relay",
"lint": "xo",
"linklocal": "node ./scripts/link-local.js",
"unlinklocal": "node ./scripts/link-local.js --unlink && pnpm install",
"preinstall": "npx only-allow pnpm",
"test": "vitest",
"test:all": "run-s build lint test:run test:cy test:pw",
"test:run": "vitest run",
"test:log": "cross-env DEBUG=localfirst*,automerge* DEBUG_COLORS=1 pnpm test run",
"test:cy:ui": "pnpm -F @localfirst/taco-chat test:cy:ui",
"test:cy": "pnpm -F @localfirst/taco-chat test:cy",
"test:pw": "pnpm -F @localfirst/automerge-repo-todos test:pw",
"test:pw:log": "pnpm -F @localfirst/automerge-repo-todos test:pw:log",
"test:pw:ui": "pnpm -F @localfirst/automerge-repo-todos test:pw:ui",
"bench": "cross-env DEBUG=localfirst*,automerge* DEBUG_COLORS=1 vitest bench",
"watch": "lerna watch -- lerna run build --scope=\\$LERNA_PACKAGE_NAME --include-dependents"
},
"devDependencies": {
"@herbcaudill/random": "^0.3.0",
"@playwright/test": "^1.40.1",
"@types/body-parser": "^1.19.5",
"@types/cors": "^2.8.17",
"@types/debug": "^4.1.12",
"@types/express": "^4.17.21",
"@types/libsodium-wrappers-sumo": "^0.7.8",
"@types/lodash-es": "^4.17.12",
"@types/node": "^18.18.13",
"@types/ws": "^8.5.10",
"chalk": "^5.3.0",
"cross-env": "^7.0.3",
"eslint": "^8.54.0",
"eslint-config-xo": "^0.43.1",
"eslint-config-xo-react": "^0.27.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-unused-imports": "^3.0.0",
"lerna": "^7.4.2",
"npm-run-all": "^4.1.5",
"prettier": "^3.3.3",
"shx": "^0.3.4",
"tsup": "^8.0.1",
"typescript": "^5.3.2",
"vite": "^5.2.11",
"vite-tsconfig-paths": "^4.2.1",
"vitest": "^1.6.0",
"xo": "^0.56.0"
}
}