-
-
Notifications
You must be signed in to change notification settings - Fork 185
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 2.56 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 2.56 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
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "@lowdefy/lowdefy",
"license": "Apache-2.0",
"private": true,
"description": "Lowdefy monorepo",
"homepage": "https://lowdefy.com",
"bugs": {
"url": "https://github.com/lowdefy/lowdefy/issues"
},
"contributors": [
{
"name": "Sam Tolmay",
"url": "https://github.com/SamTolmay"
},
{
"name": "Gerrie van Wyk",
"url": "https://github.com/Gervwyk"
}
],
"repository": {
"type": "git",
"url": "https://github.com/lowdefy/lowdefy.git"
},
"scripts": {
"build": "pnpm -r --filter='!@lowdefy/website' build",
"build:turbo": "turbo run build",
"clean": "pnpm -r clean",
"prettier": "prettier --config .prettierrc --write **/*.js",
"test": "pnpm -r --filter='!@lowdefy/plugin-aws' --filter='!@lowdefy/connection-mongodb' test",
"test:build:u": "UPDATE_SNAPSHOTS=true pnpm --filter=@lowdefy/build test",
"e2e": "pnpm -r --workspace-concurrency=1 e2e",
"update-packages": "pnpm up -i -r --latest",
"dev": "node scripts/dev.mjs",
"app:dev": "node scripts/dev.mjs --config-directory app",
"app:dev:log": "pnpm app:dev 2>&1 | tee log.txt",
"app:build": "node scripts/build.mjs --config-directory app",
"app:start": "node scripts/start.mjs",
"docs:dev": "node scripts/dev.mjs --config-directory packages/docs",
"docs:dev:log": "pnpm docs:dev 2>&1 | tee log.txt",
"docs:build": "node scripts/build.mjs --config-directory packages/docs",
"docs:start": "node scripts/start.mjs",
"cli": "pnpm build:turbo && pnpm -r --filter=lowdefy start",
"web:build": "pnpm --filter=@lowdefy/website build",
"web:dev": "pnpm --filter=@lowdefy/website dev",
"web:start": "pnpm --filter=@lowdefy/website start",
"release:version": "pnpm changeset version && pnpm install --no-frozen-lockfile",
"release:publish": "changeset publish",
"release:version-experimental": "pnpm changeset version --snapshot experimental && pnpm install --no-frozen-lockfile && pnpm build",
"release:publish-experimental": "pnpm -r --filter=!lowdefy-vscode publish --tag experimental --no-git-checks"
},
"devDependencies": {
"@changesets/cli": "2.26.2",
"eslint": "8.54.0",
"eslint-config-prettier": "9.0.0",
"eslint-import-resolver-node": "0.3.9",
"eslint-plugin-import": "2.29.0",
"eslint-plugin-jsx-a11y": "6.8.0",
"eslint-plugin-playwright": "2.5.1",
"eslint-plugin-prettier": "5.0.1",
"eslint-plugin-react": "7.33.2",
"eslint-plugin-react-hooks": "4.6.0",
"prettier": "3.1.0",
"turbo": "2.8.19"
},
"packageManager": "pnpm@10.29.2"
}