-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
113 lines (113 loc) · 3.69 KB
/
package.json
File metadata and controls
113 lines (113 loc) · 3.69 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
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
{
"name": "dmptool-apollo-server",
"version": "1.1.0",
"description": "Apollo GraphQL server for the DMP Tool system",
"main": "index.js",
"scripts": {
"compile": "tsc",
"copy-graphql": "mkdir ./dist/schemas && cp ./src/schemas/*.graphql ./dist/schemas/",
"generate": "graphql-codegen",
"lint": "npx eslint . --ignore-pattern dist/ --ignore-pattern src/types.ts",
"test": "jest --coverage",
"test-no-db": "jest --testPathIgnorePatterns=\"src/datasources/__tests__/relatedWorksTables.spec.ts\"",
"build": "rm -rf ./dist && npm run generate && npm run compile",
"dev": "ts-node-dev --respawn ./src/index.ts",
"start": "npm run build && nodemon ./dist/index.js",
"aws_start": "node ./dist/index.js",
"prepare": "is-ci || npx husky install",
"trivy-high": "sh ./src/scripts/trivy-high.sh",
"trivy-med": "sh ./src/scripts/trivy-med.sh",
"trivy-all": "npm run trivy-high && npm run trivy-med",
"init-localstack": "localstack-setup/init-aws.sh",
"re3data:sync": "ts-node data-migrations/dataSync/re3data-os-populate.ts"
},
"compilerOptions": {
"sourceMap": true
},
"repository": {
"type": "git",
"url": "https://github.com/CDLUC3/dmsp_backend_prototype.git"
},
"author": "University of California Curation Center (UC3)<dmptool@ucop.edu>",
"keywords": [],
"license": "MIT",
"engines": {
"node": ">=22.15.0",
"npm": ">=11.3.0"
},
"overrides": {
"@node-oauth/oauth2-server": "5.3.0",
"fast-xml-parser": "5.7.1",
"protobufjs": "8.2.0",
"@protobufjs/utf8": "1.1.1"
},
"dependencies": {
"@apollo/datasource-rest": "^6.4.1",
"@apollo/server": "^5.5.0",
"@apollo/utils.keyvadapter": "^4.0.1",
"@as-integrations/express5": "^1.1.2",
"@aws-sdk/client-dynamodb": "^3.1020.0",
"@aws-sdk/client-ssm": "^3.1020.0",
"@aws-sdk/credential-providers": "^3.1031.0",
"@aws-sdk/signature-v4": "^3.370.0",
"@aws-sdk/util-dynamodb": "^3.996.2",
"@dmptool/types": "^3.1.3",
"@dmptool/utils": "^2.0.0",
"@elastic/ecs-pino-format": "^1.5.0",
"@graphql-tools/merge": "^9.1.7",
"@graphql-tools/mock": "^9.1.5",
"@graphql-tools/schema": "^10.0.31",
"@keyv/redis": "^5.1.6",
"@node-oauth/express-oauth-server": "^4.1.5",
"@opensearch-project/opensearch": "^3.5.1",
"bcryptjs": "^3.0.3",
"body-parser": "^2.2.2",
"cookie-parser": "^1.4.7",
"date-fns": "^4.1.0",
"dotenv": "^17.3.1",
"express": "^5.2.1",
"express-jwt": "^8.5.1",
"graphql": "^16.13.2",
"graphql-tag": "^2.12.6",
"http-cache-semantics": "^4.2.0",
"is-ci": "^4.1.0",
"jsonwebtoken": "^9.0.3",
"keyv": "^5.6.0",
"mysql2": "^3.20.0",
"nodemailer": "^8.0.5",
"pino": "^10.3.1",
"uuid": "^9.0.1",
"uuid-random": "^1.3.2",
"xpath": "^0.0.34"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@graphql-codegen/cli": "^6.3.1",
"@graphql-codegen/typescript": "^5.0.10",
"@graphql-codegen/typescript-resolvers": "^5.1.8",
"@testcontainers/mysql": "^11.14.0",
"@types/cors": "^2.8.19",
"@types/express": "^5.0.6",
"@types/express-oauth-server": "^2.0.10",
"@types/jest": "^30.0.0",
"@types/nodemailer": "^8.0.0",
"@types/oauth2-server": "^3.0.18",
"@types/supertest": "^7.2.0",
"assert": "^2.1.0",
"casual": "^1.6.2",
"eslint": "^10.1.0",
"eslint-formatter-unix": "^9.0.1",
"globals": "^17.4.0",
"husky": "^9.1.7",
"jest": "^30.3.0",
"jest-expect-message": "^1.1.3",
"jest-mock": "^30.3.0",
"nock": "^14.0.11",
"nodemon": "^3.1.14",
"supertest": "^7.2.2",
"ts-jest": "^29.4.6",
"ts-node-dev": "^2.0.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.58.0"
}
}