-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.85 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.85 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
{
"name": "apollo3",
"private": true,
"description": "Monorepo containing Apollo front and back end code",
"type": "module",
"workspaces": [
"packages/*"
],
"scripts": {
"lint": "cross-env NODE_OPTIONS='--max-old-space-size=4096' yarn eslint --max-warnings 0",
"build:shared": "yarn workspace @apollo-annotation/shared run build",
"release": "tsx scripts/makeGitTag.ts",
"start:shared": "yarn workspace @apollo-annotation/shared run start",
"start:server": "yarn workspace @apollo-annotation/collaboration-server run start",
"start:plugin": "yarn workspace @apollo-annotation/jbrowse-plugin-apollo run start",
"start": "npm-run-all --print-label --parallel start:shared start:server start:plugin",
"test": "yarn workspaces foreach --all run test:ci",
"postinstall": "husky"
},
"devDependencies": {
"@eslint/js": "^9.21.0",
"@types/cross-spawn": "^6.0.6",
"@types/node": "^24.10.9",
"@types/semver": "^7",
"@types/yargs": "^17.0.32",
"@typescript-eslint/parser": "^8.25.0",
"@yarnpkg/types": "^4.0.0",
"cross-env": "^7.0.3",
"cross-spawn": "^7.0.3",
"eslint": "9.21.0",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-cypress": "^5.2.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react": "^7.37.4",
"eslint-plugin-react-hooks": "^7.0.0",
"eslint-plugin-tsdoc": "^0.4.0",
"eslint-plugin-unicorn": "^57.0.0",
"globals": "^15.12.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"npm-run-all": "^4.1.5",
"prettier": "^3.3.2",
"prettier-plugin-packagejson": "^2.5.2",
"react": "^18.2.0",
"semver": "^7.6.3",
"tslib": "^2.3.1",
"tsx": "^4.6.2",
"typescript": "^5.5.3",
"typescript-eslint": "^8.25.0",
"yargs": "^17.7.2"
},
"packageManager": "yarn@4.12.0"
}