forked from nci-hcmi-catalog/portal
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.02 KB
/
Copy pathpackage.json
File metadata and controls
72 lines (72 loc) · 2.02 KB
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
{
"name": "hcmi-portal",
"version": "0.0.1",
"type": "module",
"private": true,
"workspaces": [
"api",
"cms",
"ui",
"data_model"
],
"description": "HCMI Portal",
"scripts": {
"test": "cd data_model && yarn test",
"netlify": "cd ui && yarn && yarn build",
"api": "cd api && yarn start",
"cms": "cd cms && yarn start",
"ui": "cd ui && yarn start",
"launch": "yarn api & yarn cms & yarn ui",
"mapping": "cd data_model && node bin/index --script mapping",
"fake": "cd data_model && node bin/index --script fake",
"lint:ui": "eslint ui/src/**/*.js",
"initializeEs": "node scripts/initializeEs.js",
"updateEs": "node scripts/updateEs.js",
"repairEs": "node scripts/repairEs.js",
"republish": "node scripts/republish.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nci-hcmi-catalog/portal.git"
},
"author": "OICR",
"license": "ISC",
"bugs": {
"url": "https://github.com/nci-hcmi-catalog/portal/issues"
},
"homepage": "https://github.com/nci-hcmi-catalog/portal#readme",
"devDependencies": {
"@babel/eslint-parser": "^7.28.0",
"@babel/eslint-plugin": "^7.27.1",
"@babel/plugin-proposal-optional-chaining": "^7.21.0",
"@babel/preset-react": "^7.27.1",
"@elastic/elasticsearch": "~7.17.0",
"axios": "^1.7.9",
"eslint": "^9.39.1",
"eslint-config-prettier": "^10.1.8",
"eslint-config-react-app": "7.0.1",
"eslint-plugin-flowtype": "8.0.3",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-prettier": "^5.5.4",
"eslint-plugin-react": "7.37.5",
"eslint-plugin-react-hooks": "^5.2.0",
"prettier": "^2.8.8"
},
"prettier": {
"printWidth": 100,
"trailingComma": "all",
"singleQuote": true
},
"dependencies": {
"@babel/core": "^7.28.3",
"filesaver.js": "^1.3.4"
},
"resolutions": {
"js-yaml": "^4.1.1",
"mongoose": "^6.13.8",
"node-fetch": "^2.6.7",
"xml2js": "^0.5.0",
"node-forge": "^1.3.2"
}
}