forked from uc-cdis/gen3-frontend-framework
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.31 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
{
"name": "gen3-frontend-framework",
"version": "1.0.0",
"description": "Prototype of the Gen3 Frontend Framework",
"main": "index.js",
"private": true,
"workspaces": [
"packages/core",
"packages/portal"
],
"scripts": {
"lint": "eslint .",
"lint-fix": "eslint . --fix",
"build": "lerna run build",
"compile": "lerna run compile",
"dev": "lerna run --parallel dev",
"start": "lerna run --parallel start",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "",
"license": "Apache 2.0",
"dependencies": {
"classnames": "^2.3.1",
"isomorphic-fetch": "^3.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-markdown": "^9.0.1 ",
"react-responsive-carousel": "^3.2.23"
},
"devDependencies": {
"@next/eslint-plugin-next": "^12.1.0",
"@typescript-eslint/eslint-plugin": "^5.15.0",
"@typescript-eslint/parser": "^5.15.0",
"eslint": "^7.32.0",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"lerna": "^4.0.0",
"prettier": "^2.3.2"
},
"overrides": {
"gauge": {
"ansi-regex": "^3.0.1",
"strip-ansi": {
"ansi-regex": "^3.0.1"
}
},
"pretty-format": {
"ansi-regex": "^5.0.1"
}
}
}