-
Notifications
You must be signed in to change notification settings - Fork 40
/
package.json
70 lines (70 loc) · 1.99 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
60
61
62
63
64
65
66
67
68
69
70
{
"private": true,
"scripts": {
"start": "docker-compose up --build -V",
"build": "yarn pnpify tsc -b",
"bootstrap": "lerna bootstrap",
"test": "vitest",
"coverage": "vitest --coverage",
"ci-coverage": "vitest --coverage && codecov",
"lint": "eslint",
"openneuro": "node packages/openneuro-cli/src",
"_postinstall": "husky install",
"prepublish": "rm -fr packages/*/dist .build-cache/ && yarn build",
"prepublishOnly": "pinst --disable",
"postpublish": "pinst --enable",
"version": "cat cli/deno.json | jq \".version = $(cat lerna.json | jq '.version')\" > cli/deno.json && git add cli/deno.json && yarn install && git stage yarn.lock"
},
"devDependencies": {
"@elastic/apm-rum-react": "2.0.2",
"@eslint/js": "^9.13.0",
"@sentry/cli": "1.37.4",
"@testing-library/jest-dom": "6.1.3",
"@types/ioredis-mock": "^8.2.2",
"@types/jsdom": "^16",
"@types/testing-library__jest-dom": "5.14.5",
"@vitest/coverage-v8": "^1.5.0",
"@yarnpkg/pnpify": "^3.1.1-rc.8",
"babel-plugin-react-compiler": "19.0.0-beta-8a03594-20241020",
"codecov": "3.8.3",
"eslint": "^9.13.0",
"eslint-plugin-react-compiler": "19.0.0-beta-8a03594-20241020",
"graphql": "16.8.1",
"history": "5.2.0",
"husky": "5.1.1",
"ioredis": "^5.2.4",
"ioredis-mock": "^8.8.1",
"jsdom": "24.0.0",
"lerna": "3.20.2",
"lint-staged": "^10.5.4",
"mongoose": "6.12.8",
"pinst": "^2.1.6",
"prettier": "^2.2.1",
"react": "18.2.0",
"sass": "^1.56.1",
"tsc-watch": "6.0.4",
"typescript": "5.6.3",
"typescript-eslint": "^8.11.0",
"vite": "5.4.8",
"vitest": "1.5.0",
"vitest-fetch-mock": "0.2.2"
},
"workspaces": [
"packages/*"
],
"lint-staged": {
"*.{js,jsx,ts,tsx,json}": [
"deno fmt *"
]
},
"dependenciesMeta": {
"[email protected]": {
"unplugged": true
}
},
"resolutions": {
"react-router-dom": "6.3.0",
"rollup": "4.22.0"
},
"packageManager": "[email protected]"
}