-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
77 lines (77 loc) · 2.17 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
{
"name": "hcmi-portal",
"version": "0.0.1",
"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.17.0",
"@babel/eslint-plugin": "^7.17.7",
"@babel/plugin-proposal-optional-chaining": "^7.2.0",
"@elastic/elasticsearch": "~7.17.0",
"axios": "^0.21.2",
"eslint": "^7.11.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-react-app": "6.0.0",
"eslint-plugin-babel": "^5.1.0",
"eslint-plugin-flowtype": "6.1.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "7.29.4",
"prettier": "1.17.1"
},
"prettier": {
"printWidth": 100,
"trailingComma": "all",
"singleQuote": true
},
"dependencies": {
"@babel/core": "^7.17.12",
"filesaver.js": "^1.3.4"
},
"resolutions": {
"@n1ru4l/push-pull-async-iterable-iterator": "2.1.4",
"ansi-html": "0.0.9",
"browserslist": "4.20.3",
"css-select": "4.3.0",
"glob-parent": "6.0.2",
"graphiql": "1.7.2",
"immer": "9.0.14",
"isomorphic-fetch": "3.0.0",
"meros": "1.0.0",
"mpath": "0.8.4",
"selfsigned": "1.10.13",
"sockjs-client": "1.5.2"
}
}