-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.63 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.63 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
{
"name": "codelink",
"version": "2.0.0",
"private": true,
"workspaces": [
"packages/protocol",
"packages/vscode-extension",
"packages/mobile"
],
"scripts": {
"build": "npm run build --workspaces --if-present",
"lint": "eslint . --ext .ts,.tsx --ignore-path .eslintignore",
"lint:fix": "eslint . --ext .ts,.tsx --ignore-path .eslintignore --fix",
"format": "prettier --write \"**/*.{ts,tsx,json,md}\"",
"format:check": "prettier --check \"**/*.{ts,tsx,json,md}\"",
"typecheck": "npm run typecheck:protocol && npm run typecheck:vscode && npm run typecheck:mobile",
"typecheck:protocol": "cd packages/protocol && tsc --noEmit",
"typecheck:vscode": "cd packages/vscode-extension && tsc --noEmit",
"typecheck:mobile": "cd packages/mobile && tsc --noEmit",
"test": "npm run test --workspace=packages/protocol",
"test:watch": "npm run test --workspace=packages/protocol -- --watch",
"test:coverage": "npm run test --workspace=packages/protocol -- --coverage",
"test:ci": "npm run test --workspace=packages/protocol -- --coverage --reporter=verbose",
"test:go": "go test ./services/auth/... ./services/relay/...",
"test:go:verbose": "go test -v ./services/auth/... ./services/relay/...",
"precommit": "npm run lint && npm run typecheck && npm run format:check"
},
"devDependencies": {
"@types/node": "^20.0.0",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"@vitest/coverage-v8": "^4.1.0",
"@vitest/ui": "^4.1.0",
"eslint": "^8.0.0",
"prettier": "^3.0.0",
"typescript": "^5.0.0",
"vitest": "^4.1.0"
}
}