forked from linear/linear
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 2.95 KB
/
package.json
File metadata and controls
98 lines (98 loc) · 2.95 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
{
"name": "linear",
"private": true,
"author": "Linear Orbit, Inc",
"license": "MIT",
"engines": {
"node": ">=18.x"
},
"scripts": {
"prepare": "husky",
"build:import": "pnpm run -r build:import",
"build:sdk": "pnpm run -r build:sdk",
"build:types": "pnpm run -r build:types",
"build": "run-s generate build:sdk generate:test build:import build:types docs",
"dev": "NODE_ENV=development pnpm build",
"docs": "md-magic 'packages/**/README.md' --config ./docs/markdown-magic.config.js",
"generate:clean": "pnpm run -r generate:clean",
"generate:doc": "pnpm run -r build:codegen-doc && pnpm run -r generate:doc",
"generate:sdk": "pnpm run -r build:codegen-sdk && pnpm run -r generate:sdk",
"generate:test": "pnpm run -r build:codegen-test && pnpm run -r generate:test",
"generate": "run-s generate:clean generate:doc generate:sdk",
"lint": "eslint --max-warnings 0 .",
"mock": "graphql-faker packages/sdk/src/schema.graphql",
"schema": "pnpm run update:schema",
"test:e2e": "E2E=true pnpm --filter './packages/sdk' test _generated.test",
"test:update": "pnpm -r test -w -u",
"test:watch": "pnpm -r test -w",
"test": "pnpm -r test",
"update:dependencies": "pnpm up && pnpm run -r generate:changeset:dependencies",
"update:schema": "pnpm run -r generate:schema && pnpm run -r generate:changeset:schema",
"ci:publish": "pnpm publish -r && changeset tag"
},
"devDependencies": {
"@changesets/cli": "^2.14.1",
"@commitlint/cli": "^17.6.7",
"@commitlint/config-conventional": "^11.0.0",
"@eslint/js": "^9.39.1",
"@octokit/core": "^3.2.1",
"@types/express": "^4.17.8",
"@types/lodash": "^4.14.165",
"@types/node": "catalog:",
"@types/ws": "^7.4.1",
"@typescript-eslint/eslint-plugin": "^8.49.0",
"@typescript-eslint/parser": "^4.8.0",
"eslint": "^9.39.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-jsdoc": "^61.5.0",
"express": "^4.17.3",
"get-port": "^5.1.1",
"graphql": "^15.4.0",
"graphql-faker": "2.0.0-rc.25",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"markdown-magic": "^3.7.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.0.0",
"rimraf": "^3.0.2",
"tslib": "^2.1.0",
"typescript": "catalog:",
"typescript-eslint": "^8.49.0"
},
"lint-staged": {
"*.{js,ts,tsx,json,css,yaml}": [
"prettier --write"
],
"*.{js,ts,tsx}": [
"eslint --max-warnings 0 --fix --no-warn-ignored"
]
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"jest": {
"testEnvironment": "node",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json"
],
"testMatch": [
"**/*.test.ts?(x)"
],
"transform": {
"^.*\\.tsx?$": "ts-jest"
},
"testTimeout": 20000,
"globals": {
"ts-jest": {
"tsconfig": "tsconfig.json"
}
}
},
"packageManager": "pnpm@10.25.0"
}