-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
88 lines (88 loc) · 2.62 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
{
"name": "gdc-frontend-framework",
"private": true,
"workspaces": [
"packages/*"
],
"version": "2.15.5",
"description": "The GDC Frontend Framework",
"main": "index.js",
"scripts": {
"lint": "eslint .",
"lint-fix": "eslint --fix .",
"format": "prettier --write .",
"format:check": "prettier --check .",
"test": "npm run test --workspaces --if-present",
"test:int": "npm run test:int --workspaces --if-present",
"test:all": "npm run test:all --workspaces --if-present",
"compile": "lerna run compile",
"dev": "lerna run --parallel dev",
"dev:gdc": "lerna run dev --scope portal-proto",
"dev:enclave": "lerna run dev --scope enclave-portal",
"prepare": "husky install",
"build": "lerna run build",
"build:clean": "lerna run build:clean",
"start": "lerna run --parallel start",
"build-docs": "typedoc",
"version": "npm version --workspaces --git-tag-version=false"
},
"lint-staged": {
"!(**/*.png)": [
"prettier --write --ignore-unknown"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/NCI-GDC/gdc-frontend-framework.git"
},
"author": "",
"license": "Apache-2.0",
"homepage": "https://github.com/NCI-GDC/gdc-frontend-framework#readme",
"dependencies": {
"@reactour/tour": "^2.9.0",
"dom-to-svg": "^0.12.2",
"echarts": "^5.5.1",
"file-saver": "^2.0.5",
"isomorphic-fetch": "^3.0.0",
"lodash": "^4.17.21",
"react": "^18.2.0",
"react-cookie": "^4.1.1",
"react-dom": "^18.2.0",
"react-table": "^7.7.12",
"react-use": "^17.3.2",
"sharp": "^0.32.6",
"url-join": "^5.0.0",
"use-deep-compare": "^1.1.0"
},
"devDependencies": {
"@next/eslint-plugin-next": "^12.1.5",
"@svgr/webpack": "^8.0.1",
"@types/file-saver": "^2.0.5",
"@types/isomorphic-fetch": "^0.0.35",
"@types/lodash": "^4.14.178",
"@types/jest": "^29.5.14",
"@types/plotly.js": "^1.54.14",
"@types/react-table": "^7.7.12",
"@typescript-eslint/eslint-plugin": "^6.7.5",
"@typescript-eslint/parser": "^6.7.5",
"eslint": "^8.51.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-tsdoc": "^0.2.17",
"husky": "^7.0.4",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"lerna": "^6.6.1",
"lint-staged": "^12.3.7",
"prettier": "^2.3.2",
"typedoc": "^0.25.4",
"ts-jest": "^29.2.5",
"typedoc-plugin-missing-exports": "^2.1.0"
},
"engines": {
"npm": ">=10.2.4"
}
}