-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
117 lines (117 loc) · 4.67 KB
/
package.json
File metadata and controls
117 lines (117 loc) · 4.67 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
{
"name": "docs.plus",
"private": true,
"license": "MIT",
"workspaces": [
"packages/*"
],
"prettier": "./.prettierrc.json",
"scripts": {
"prepare": "husky",
"postinstall": "bun run --filter @docs.plus/hocuspocus prisma:generate || true",
"doctor": "bun scripts/doctor.ts",
"update:packages": "bunx npm-check-updates -u",
"start:webapp": "cd packages/webapp && bun run start",
"dev": "bun --filter @docs.plus/webapp run dev",
"dev:local": "make dev-local",
"dev:backend": "make dev-backend",
"dev:webapp": "make dev-webapp",
"dev:rest": "make dev-rest",
"dev:ws": "make dev-ws",
"dev:worker": "make dev-worker",
"dev:admin": "bun --filter @docs.plus/admin-dashboard run dev",
"dev:admin:local": "bun --filter @docs.plus/admin-dashboard run dev:local",
"build:admin": "bun --filter @docs.plus/admin-dashboard run build",
"build": "bun run --filter '*' build",
"check": "bun run check:lint && bun run check:format && bun run check:types",
"check:lint": "eslint .",
"check:format": "prettier --check .",
"check:types": "bun run typecheck:webapp && bun run typecheck:admin && bun run typecheck:backend",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"lint:packages": "bun run --filter '*' lint:fix",
"lint:styles": "stylelint 'packages/**/*.{css,scss}' --allow-empty-input",
"lint:styles:fix": "stylelint 'packages/**/*.{css,scss}' --fix --allow-empty-input",
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint:staged": "lint-staged",
"typecheck": "bun run --filter '*' tsc --noEmit",
"typecheck:webapp": "cd packages/webapp && bun run tsc --noEmit",
"typecheck:admin": "cd packages/admin-dashboard && bun run tsc --noEmit",
"typecheck:backend": "cd packages/hocuspocus.server && bun run tsc --noEmit",
"release": "bun run version",
"release:major": "bun run version:major",
"release:minor": "bun run version:minor",
"release:patch": "bun run version:patch",
"version": "bun run version:patch",
"version:major": "bunx changeset version --snapshot major",
"version:minor": "bunx changeset version --snapshot minor",
"version:patch": "bunx changeset version --snapshot patch",
"publish": "bun run build && bun run --filter '*' --if-present npm publish --tag latest --access public",
"update:all-packages": "sh ./scripts/update-packages.sh",
"reinstall:all-packages": "sh ./scripts/reinstall-packages.sh",
"pre-push": "bun scripts/pre-push.ts",
"test:all": "bash ./scripts/run-tests.sh",
"test:unit": "bash ./scripts/run-tests.sh --unit",
"test:e2e": "bash ./scripts/run-tests.sh --e2e",
"test:e2e:2": "CYPRESS_PARALLEL=2 bash ./scripts/run-tests.sh --e2e",
"test:e2e:4": "CYPRESS_PARALLEL=4 bash ./scripts/run-tests.sh --e2e",
"test:e2e:8": "CYPRESS_PARALLEL=8 bash ./scripts/run-tests.sh --e2e",
"cypress:open": "bunx cypress open",
"cypress:run": "bunx cypress run"
},
"engines": {
"node": ">=24.11.0",
"bun": ">=1.3.7"
},
"dependencies": {
"bson": "^7.2.0",
"lodash": "^4.17.23",
"uuid": "^13.0.0"
},
"devDependencies": {
"@babel/core": "^7.29.0",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.18.6",
"@babel/plugin-proposal-optional-chaining": "^7.21.0",
"@babel/plugin-syntax-typescript": "^7.28.6",
"@babel/preset-env": "^7.29.0",
"@babel/preset-react": "^7.28.5",
"@types/minimatch": "^6.0.0",
"@types/node": "^24.11.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@typescript-eslint/eslint-plugin": "^8.56.1",
"@typescript-eslint/parser": "^8.56.1",
"babel-loader": "^10.0.0",
"babel-plugin-module-resolver": "^5.0.2",
"bun-types": "latest",
"conventional-changelog-cli": "^5.0.0",
"eslint": "^9.39.3",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-html": "^8.1.4",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-prettier": "^5.5.5",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-vue": "^10.8.0",
"fs-extra": "^11.3.3",
"globals": "^16.5.0",
"husky": "^9.1.7",
"lint-staged": "^16.3.1",
"minimist": "^1.2.8",
"next-transpile-modules": "^10.0.1",
"npm-check-updates": "^19.6.3",
"prettier": "^3.8.1",
"prettier-plugin-tailwindcss": "^0.7.2",
"sass": "^1.97.3",
"stylelint": "^17.4.0",
"stylelint-config-standard": "^40.0.0",
"stylelint-config-standard-scss": "^17.0.0",
"stylelint-order": "^7.0.1",
"ts-loader": "9.5.4",
"tsup": "^8.5.1",
"typescript": "^5.9.3",
"webpack": "^5.105.3"
}
}