forked from broadinstitute/gnomad-browser
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
98 lines (98 loc) · 3.15 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
{
"license": "MIT",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/broadinstitute/gnomad-browser.git"
},
"scripts": {
"format": "prettier --write './**/src/**/*.(js|ts|jsx|tsx)'",
"start:browser": "cd browser && ./start.sh",
"lint:css": "stylelint './**/src/**/*.(js|ts|jsx|tsx)'",
"lint:js": "eslint .",
"test:jest": "jest",
"test:jest:debug": "node --inspect-brk node_modules/.bin/jest --runInBand",
"test:cypress:headless": "cd browser && cypress run",
"test:full": "yarn test:jest && yarn test:cypress:headless",
"typecheck": "yarn run tsc --noEmit",
"typecheck:watch": "yarn run tsc -w --noEmit"
},
"engines": {
"node": "^14.17.0 <15.0.0"
},
"workspaces": [
"browser",
"dataset-metadata",
"graphql-api",
"reads"
],
"devDependencies": {
"@babel/core": "^7.10.4",
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/plugin-transform-runtime": "^7.10.4",
"@babel/preset-env": "^7.10.4",
"@babel/preset-react": "^7.10.4",
"@babel/preset-typescript": "^7.18.6",
"@jest/globals": "^29.0.0",
"@testing-library/jest-dom": "^5.11.0",
"@testing-library/react": "^10.4.3",
"@testing-library/user-event": "^14.4.3",
"@types/d3-array": "^3.0.3",
"@types/d3-scale": "^4.0.2",
"@types/d3-shape": "^3.1.0",
"@types/jest": "^29.0.0",
"@types/query-string": "^6.3.0",
"@types/react": "^18.0.15",
"@types/react-router-dom": "^5.3.3",
"@types/react-window": "^1.8.5",
"@types/styled-components": "^5.1.25",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.1.0",
"babel-loader": "^8.2.2",
"babel-plugin-styled-components": "^1.10.7",
"copy-webpack-plugin": "^7.0.0",
"eslint": "^7.3.1",
"eslint-config-airbnb": "^18.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.20.3",
"eslint-plugin-react-hooks": "^4.0.5",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.2.0",
"jest": "^29.0.0",
"jest-environment-jsdom": "^29.0.1",
"lodash-es": "^4.17.21",
"nodemon": "^2.0.4",
"prettier": "^2.8.8",
"react-test-renderer": "^16.14.0",
"stylelint": "^13.6.1",
"stylelint-config-standard": "^20.0.0",
"stylelint-config-styled-components": "^0.1.1",
"stylelint-order": "^4.1.0",
"stylelint-processor-styled-components": "^1.10.0",
"ts-jest": "^29.0.0",
"ts-loader": "^9.3.1",
"ts-node": "^10.9.1",
"webpack": "^5.76.0",
"webpack-cli": "^4.5.0",
"webpack-dev-server": "^3.11.2"
},
"volta": {
"node": "14.20.0"
},
"dependencies": {
"@types/http-errors": "^2.0.1",
"@types/js-worker-search": "^1.4.2",
"@types/lodash-es": "^4.17.6",
"@types/lodash": "^4.14.185",
"@types/react-dom": "^18.0.6",
"@types/react-highlight-words": "^0.16.4",
"@types/react-router": "^5.1.18",
"@types/react-slider": "^1.3.1",
"@types/react-test-renderer": "^18.0.0",
"@typescript-eslint/eslint-plugin": "^5.59.0",
"@typescript-eslint/parser": "^5.59.0"
}
}