-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
86 lines (86 loc) · 2.6 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
{
"name": "dmsp_apollo",
"version": "1.0.0",
"description": "Prototype backend for the new DMSP 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",
"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": "husky"
},
"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": ">=21.6.2",
"npm": ">=10.2.4"
},
"dependencies": {
"@apollo/datasource-rest": "^6.0.1",
"@apollo/server": "^4.10.0",
"@apollo/utils.keyvadapter": "^3.1.0",
"@elastic/ecs-pino-format": "^1.5.0",
"@graphql-tools/merge": "^9.0.3",
"@graphql-tools/mock": "^9.0.0",
"@graphql-tools/schema": "^10.0.0",
"@keyv/redis": "^3.0.1",
"@node-oauth/express-oauth-server": "^4.0.0",
"bcryptjs": "^2.4.3",
"body-parser": "^1.20.3",
"casual": "^1.6.2",
"cookie-parser": "^1.4.7",
"dotenv": "^16.4.5",
"express": "^4.21.1",
"express-jwt": "^8.4.1",
"graphql": "^16.8.1",
"graphql-tag": "^2.12.6",
"http-cache-semantics": "^4.1.1",
"ioredis": "^5.4.1",
"jsonwebtoken": "^9.0.2",
"keyv": "^5.0.1",
"mysql2": "^3.9.7",
"pino": "^9.0.0",
"uuid": "^9.0.1",
"uuid-random": "^1.3.2",
"uuidv4": "^6.2.13"
},
"devDependencies": {
"@eslint/js": "^9.6.0",
"@graphql-codegen/cli": "^4.0.1",
"@graphql-codegen/typescript": "^4.0.1",
"@graphql-codegen/typescript-resolvers": "^4.0.1",
"@types/bcryptjs": "^2.4.6",
"@types/cors": "^2.8.17",
"@types/eslint__js": "^8.42.3",
"@types/express": "^4.17.21",
"@types/express-oauth-server": "^2.0.7",
"@types/jest": "^29.5.12",
"@types/oauth2-server": "^3.0.16",
"@types/pino": "^7.0.5",
"@types/supertest": "^6.0.2",
"eslint": "^8.57.0",
"globals": "^15.6.0",
"husky": "^9.1.4",
"jest": "^29.7.0",
"jest-expect-message": "^1.1.3",
"jest-mock": "^29.7.0",
"nock": "^13.5.5",
"nodemon": "^3.1.0",
"supertest": "^7.0.0",
"ts-jest": "^29.1.4",
"ts-node-dev": "^2.0.0",
"typescript": "^5.5.2",
"typescript-eslint": "^7.14.1"
}
}