forked from OpenNeuroOrg/openneuro
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
98 lines (98 loc) · 2.72 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
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
{
"private": true,
"scripts": {
"start": "docker-compose up --build -V",
"build": "yarn tsc -b",
"bootstrap": "lerna bootstrap",
"test": "jest --maxWorkers=50%",
"coverage": "jest --coverage",
"ci-coverage": "jest --coverage && codecov",
"lint": "eslint --ext .jsx --ext .js --ext .ts --ext .tsx packages/*/src",
"openneuro": "node packages/openneuro-cli/src",
"_postinstall": "husky install",
"prepublishOnly": "pinst --disable",
"postpublish": "pinst --enable"
},
"devDependencies": {
"@babel/core": "^7.13.15",
"@babel/plugin-proposal-class-properties": "^7.13.0",
"@babel/plugin-proposal-object-rest-spread": "^7.13.8",
"@babel/plugin-proposal-optional-chaining": "^7.13.12",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.13.15",
"@babel/preset-env": "^7.13.15",
"@babel/preset-react": "^7.13.13",
"@babel/preset-typescript": "^7.13.0",
"@babel/runtime-corejs3": "^7.13.10",
"@loadable/babel-plugin": "^5.13.2",
"@sentry/cli": "1.37.4",
"@testing-library/jest-dom": "^5.14.1",
"@types/babel__core": "^7",
"@types/babel__plugin-transform-runtime": "^7",
"@types/babel__preset-env": "^7",
"@types/jest": "^26.0.23",
"@types/testing-library__jest-dom": "^5",
"@typescript-eslint/eslint-plugin": "^4.19.0",
"@typescript-eslint/parser": "^4.19.0",
"babel-eslint": "10.0.3",
"codecov": "3.8.3",
"core-js": "^3.3.2",
"eslint": "7.23.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-react": "^7.23.1",
"eslint-plugin-react-hooks": "^4.2.0",
"graphql": "14.7.0",
"husky": "5.1.1",
"jest": "^26.6.3",
"lerna": "3.20.2",
"lint-staged": "^10.5.4",
"pinst": "^2.1.6",
"prettier": "^2.2.1",
"react": "17.0.2",
"ts-jest": "^27.0.7",
"tsc-watch": "^4.2.9",
"typescript": "4.0.6"
},
"workspaces": [
"packages/*"
],
"lint-staged": {
"*.{js,jsx,ts,tsx,json}": [
"prettier --write"
]
},
"jest": {
"preset": "ts-jest",
"projects": [
"packages/*"
],
"collectCoverageFrom": [
"**/*.{js,jsx,ts,tsx}",
"!**/papaya.js",
"!**/*.spec.{js,jsx,ts,tsx}",
"!**/node_modules/**",
"!**/vendor/**",
"!**/.yarn/**",
"!**/dist/**",
"!**/*.d.ts",
"!**/mock-content/**"
],
"coverageProvider": "v8",
"testPathIgnorePatterns": [
"dist"
],
"moduleNameMapper": {
"@openneuro/(.+)": "<rootDir>../openneuro-$1/src"
}
},
"dependenciesMeta": {
"[email protected]": {
"unplugged": true
}
},
"resolutions": {
"react-router-dom": "5.2.0"
}
}