-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
116 lines (116 loc) · 3.78 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
{
"name": "server",
"version": "3.44.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "rm -rf dist && tsc -p ./tsconfig.build.json && cp -r ./src/resources ./dist",
"dev": "NODE_PATH=./src NODE_ENV=development nodemon -e js,json,ts ./src/index.ts",
"fileCentricEsInit": "ts-node --project tsconfig.script.json ./compose/fileCentricEsInit.ts",
"embargoStageEsInit": "ts-node --project tsconfig.script.json ./compose/embargoStageEsInit.ts",
"generateFakeEsFiles": "ts-node --project tsconfig.script.json ./compose/generateFake.ts",
"patchTS": "ts-patch install -s",
"prepare": "npm run patchTS",
"programDashboardEsInit": "ts-node --project tsconfig.script.json ./compose/programDashboardEsInit.ts",
"start::prod": "ts-node -T ./src/index.ts",
"test-arranger-acl": "jest --testPathPattern='src/schemas/Arranger/test/metadataAccessControl.test.ts'",
"test-base": "jest --runInBand --testPathIgnorePatterns='src/schemas/Arranger/test/metadataAccessControl.test.ts' --testPathIgnorePatterns='src/routes/file-storage-api/handlers/test/entitiesId.test.ts'",
"test": "npm run test-base && npm run test-arranger-acl",
"type-check": "tsc -p ./tsconfig.json --noEmit"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@arranger/server": "^2.19.4",
"@babel/plugin-proposal-object-rest-spread": "^7.18.6",
"@babel/plugin-proposal-optional-chaining": "^7.18.6",
"@babel/register": "^7.18.6",
"@elastic/elasticsearch": "^7.17.0",
"@icgc-argo/ego-token-utils": "^8.2.0",
"@icgc-argo/program-service-proto": "0.1.0",
"apollo-link-context": "^1.0.20",
"apollo-link-http": "^1.5.17",
"apollo-server-express": "^2.25.4",
"async-retry": "^1.3.3",
"axax": "^0.2.2",
"babel-polyfill": "^6.26.0",
"body-parser": "^1.20.0",
"cors": "^2.8.5",
"dataloader": "^2.1.0",
"date-fns": "^2.28.0",
"dotenv": "^16.3.2",
"elastic-builder": "^2.16.0",
"express": "^4.18.1",
"express-winston": "^4.2.0",
"filesize": "^9.0.9",
"form-data": "^4.0.0",
"graphql": "^14.7.0",
"graphql-tools": "^4.0.4",
"http-proxy-middleware": "^1.3.1",
"json-stringify-deterministic": "^1.0.7",
"lodash": "^4.17.21",
"node-cache": "^5.1.2",
"node-fetch": "2.6.7",
"node-vault": "^0.9.22",
"retry": "^0.13.1",
"swagger-ui-express": "^4.4.0",
"ts-interface-checker": "^1.0.2",
"url-join": "4.0.1",
"winston": "^3.8.1",
"yamljs": "^0.3.0",
"zod": "^3.22.2"
},
"devDependencies": {
"@babel/core": "^7.18.5",
"@babel/preset-env": "^7.18.2",
"@types/async-retry": "^1.4.4",
"@types/chai": "^4.3.1",
"@types/chai-http": "^4.2.0",
"@types/eslint": "^8.56.2",
"@types/express": "^4.17.13",
"@types/graphql-upload": "^8.0.11",
"@types/jest": "^25.2.3",
"@types/lodash": "^4.14.182",
"@types/node-fetch": "^2.6.1",
"@types/request": "^2.48.8",
"@types/swagger-ui-express": "^4.1.3",
"@types/url-join": "^4.0.1",
"@types/uuid": "^8.3.4",
"@types/yamljs": "^0.2.31",
"@typescript-eslint/eslint-plugin": "^5.56.0",
"@typescript-eslint/parser": "^5.56.0",
"apollo-server-testing": "^2.25.4",
"chai": "^4.3.6",
"chai-http": "^4.3.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^8.8.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.1.3",
"jest": "^25.5.4",
"nodemon": "^2.0.22",
"paralleljs": "^1.1.0",
"prettier": "^3.2.4",
"prettier-plugin-organize-imports": "^3.2.4",
"testcontainers": "^2.20.0",
"ts-interface-builder": "^0.3.3",
"ts-jest": "^25.5.1",
"ts-node": "^10.8.2",
"ts-node-dev": "^2.0.0",
"ts-patch": "^2.1.0",
"typescript": "^4.7.4",
"typescript-transform-paths": "^3.4.6",
"uuid": "^8.3.2"
},
"jest": {
"transform": {
"^.+\\.[jt]sx?$": [
"ts-jest"
]
}
},
"optionalDependencies": {
"fsevents": "^1.2.9"
}
}