-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
59 lines (59 loc) · 1.74 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
{
"name": "rushdb",
"private": true,
"license": "Apache-2.0",
"scripts": {
"clean": "pnpm -r run clean",
"clean:install": "pnpm -r run flush & pnpm install",
"dev": "cd platform && pnpm dev:platform",
"build": "pnpm -r run build",
"build:platform-image": "docker build -t platform -f platform/Dockerfile .",
"types:check": "pnpm -r run types:check",
"format": "prettier --write ./**/*.{ts,tsx}",
"lint": "eslint --ext mjs,js,ts,tsx",
"lint:fix": "pnpm lint --fix",
"test": "echo \"No test specified\" && exit 0",
"test:watch": "jest --watch",
"version": "changeset version",
"release": "changeset publish",
"version:dev": "changeset version --snapshot dev",
"release:dev": "changeset publish --tag dev",
"reinstall": "find . -name 'node_modules' -type d -prune -exec rm -rf '{}' + && pnpm i"
},
"devDependencies": {
"@changesets/cli": "^2.27.10",
"@commitlint/cli": "^17.6.6",
"@commitlint/config-conventional": "^17.6.6",
"@swc/jest": "^0.2.26",
"@types/jest": "^29.5.2",
"@types/node": "^18.15.11",
"@types/react": "18.2.0",
"@typescript-eslint/eslint-plugin": "^8.18.0",
"@typescript-eslint/parser": "^8.19.0",
"esbuild": "0.21.5",
"eslint": "9.2.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jest-dom": "^5.5.0",
"husky": "^8.0.3",
"jest": "29.5.0",
"jest-ts-webcompat-resolver": "1.0.0",
"prettier": "^3.4.2",
"rimraf": "^6.0.1",
"typescript": "5.7.2"
},
"packageManager": "[email protected]",
"engines": {
"pnpm": "10",
"node": ">=18.0.0 <=22.x.x"
},
"workspaces": [
"packages/*",
"platform/*",
"docs",
"website",
"examples/*"
],
"dependencies": {
"npm-run-all": "^4.1.5"
}
}