forked from AdrianBZG/InterMine-Data-Browser-Tool
-
Notifications
You must be signed in to change notification settings - Fork 33
/
package.json
138 lines (138 loc) · 3.83 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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
{
"name": "intermine-data-browser",
"version": "2.0.0",
"description": "A web-based data browser for InterMine",
"repository": {
"type": "git",
"url": "https://github.com/JM-Mendez/InterMine-Data-Browser-Tool"
},
"author": "John Mendez",
"homepage": ".",
"bugs": {
"url": "https://github.com/JM-Mendez/InterMine-Data-Browser-Tool/issues",
"email": "[email protected]"
},
"engines": {
"node": ">=10"
},
"scripts": {
"analyze": "cross-env ANALYZE=true yarn run build",
"build": "yarn build:css && cross-env EXTEND_ESLINT=true craco build",
"build:css": "node-sass --importer=./node_modules/node-sass-magic-importer/dist/cli --include-path ./src --include-path ./node_modules/ ./src/theme -o ./src/theme",
"eject": "craco eject",
"lint": "concurrently \"yarn:lint:*\"",
"lint:css": "cross-env NODE_ENV=development stylelint src/**/*.js{x}",
"lint:js": "cross-env NODE_ENV=development eslint src/**/*.{js,jsx}",
"serve": "serve build",
"start": "yarn build:css && cross-env EXTEND_ESLINT=true craco start",
"test": "craco test",
"typecheck": "tsc",
"typecheck:watch": "tsc --watch"
},
"dependencies": {
"@blueprintjs/core": "^3.28.2",
"@blueprintjs/select": "^3.13.3",
"@emotion/babel-preset-css-prop": "^10.0.27",
"@emotion/core": "^10.0.28",
"@emotion/styled": "^10.0.27",
"@xstate/react": "^0.8.1",
"axios": "^0.19.2",
"file-saver": "^2.0.2",
"flexsearch": "^0.6.32",
"highlight.js": "^10.1.2",
"imjs": "^4.0.0",
"localforage": "^1.8.1",
"nanoid": "^3.1.10",
"nanoid-dictionary": "^3.0.0",
"object-hash": "^2.0.3",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-use": "^15.3.2",
"react-window": "^1.8.5",
"recharts": "^1.8.5",
"underscore.string": "^3.3.5",
"xstate": "latest"
},
"devDependencies": {
"@blueprintjs/eslint-plugin": "^0.2.0",
"@craco/craco": "^5.6.4",
"@testing-library/jest-dom": "^5.11.0",
"@testing-library/react": "^10.4.3",
"@testing-library/user-event": "^12.0.11",
"@types/react-window": "^1.8.2",
"@typescript-eslint/eslint-plugin": "2.x",
"@typescript-eslint/parser": "2.x",
"@xstate/test": "^0.4.0",
"babel-eslint": "10.x",
"babel-plugin-emotion": "^10.0.33",
"babel-plugin-import": "^1.13.0",
"babel-preset-react-app": "^9.1.2",
"concurrently": "^5.2.0",
"cross-env": "^7.0.2",
"eslint": "6.x",
"eslint-config-prettier": "^6.11.0",
"eslint-config-react-app": "^5.2.1",
"eslint-plugin-flowtype": "4.x",
"eslint-plugin-import": "2.x",
"eslint-plugin-jsx-a11y": "6.x",
"eslint-plugin-react": "7.x",
"eslint-plugin-react-hooks": "2.x",
"eslint-plugin-simple-import-sort": "^5.0.3",
"husky": ">=4",
"jest-axe": "^3.4.0",
"lint-staged": ">=10",
"node-sass": "^4.14.1",
"node-sass-magic-importer": "^5.3.2",
"prettier": "^2.0.5",
"prettier-plugin-package": "^1.0.0",
"prop-types": "^15.7.2",
"react-scripts": "3.4.1",
"serve": "^11.3.2",
"stylelint": "^13.6.0",
"stylelint-a11y": "^1.2.3",
"stylelint-config-prettier": "^8.0.1",
"stylelint-config-recommended": "^3.0.0",
"stylelint-declaration-block-no-ignored-properties": "^2.3.0",
"stylelint-webpack-plugin": "^2.0.0",
"typescript": "^3.9.6",
"webpack-bundle-analyzer": "^3.8.0",
"worker-loader": "^2.0.0"
},
"resolutions": {
"webpack": "4.42.0"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"contributors": [
"John Mendez",
"Adrian Barzaga",
"Nikhil Vats"
],
"eslintConfig": {
"extends": "react-app"
},
"husky": {
"hooks": {
"pre-commit": "cross-env NODE_ENV=development lint-staged"
}
},
"lint-staged": {
"*.{json,css,md}": "prettier --write",
"*.{js,jsx}": [
"prettier --write",
"eslint --fix",
"stylelint"
]
},
"title": "InterMine Data Browser"
}