This repository has been archived by the owner on Jan 23, 2024. It is now read-only.
generated from Pocket/backend-typescript-template
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
96 lines (96 loc) · 2.93 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
{
"name": "curated-corpus-api",
"version": "1.0.0",
"description": "",
"main": "dist/main.js",
"scripts": {
"build": "rm -rf dist && tsc",
"watch": "tsc -w & nodemon",
"start": "npm run migrate:deploy && node dist/main.js",
"start:dev": "npm run migrate:deploy && npm run build && npm run watch",
"test-ci": "npm test",
"test:watch": "npm test -- --watchAll",
"test": "jest \"\\.spec\\.ts\"",
"test-setup": "export $(egrep -v '^#' .docker/local.env | xargs -0) && ./.circleci/scripts/setup.sh --hosts",
"test-integrations": "jest \"\\.integration\\.ts\" --runInBand",
"test-integrations:watch": "npm run test-integrations -- --watchAll",
"lint-check": "eslint --fix-dry-run \"src/**/*.ts\"",
"lint-fix": "eslint --fix \"src/**/*.ts\"",
"db:generate-client": "prisma generate",
"migrate:dev": "prisma migrate dev",
"migrate:deploy": "prisma migrate deploy",
"migrate:reset": "prisma migrate reset"
},
"nodemonConfig": {
"watch": [
"*.*",
"*.graphql"
]
},
"prisma": {
"seed": "ts-node --emit=false prisma/seed.ts"
},
"repository": {
"type": "git",
"url": "git+git@github.com:Pocket/curated-corpus-api.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Pocket/curated-corpus-api/issues"
},
"homepage": "https://github.com/Pocket/curated-corpus-api#readme",
"dependencies": {
"@apollo/server": "4.7.5",
"@apollo/server-plugin-response-cache": "4.1.3",
"@apollo/subgraph": "2.4.9",
"@aws-sdk/client-eventbridge": "3.342.0",
"@aws-sdk/client-s3": "^3.341.0",
"@aws-sdk/lib-storage": "^3.342.0",
"@devoxa/prisma-relay-cursor-connection": "3.1.0",
"@pocket-tools/apollo-utils": "3.3.4",
"@pocket-tools/ts-logger": "^1.3.0",
"@prisma/client": "^4.16.2",
"@sentry/node": "7.49.0",
"@sentry/tracing": "7.49.0",
"@snowplow/node-tracker": "3.5.0",
"@types/luxon": "3.3.0",
"aws-xray-sdk-core": "3.5.0",
"aws-xray-sdk-express": "3.5.0",
"cors": "2.8.5",
"dataloader": "2.2.2",
"date-fns": "2.29.3",
"express": "4.18.2",
"graphql": "16.6.0",
"graphql-scalars": "1.22.2",
"graphql-tag": "2.12.6",
"graphql-upload": "15.0.2",
"luxon": "3.3.0",
"metadata-scraper": "^0.2.61",
"node-fetch": "2.6.12"
},
"devDependencies": {
"@aws-sdk/types": "^3.341.0",
"@faker-js/faker": "8.0.2",
"@pocket-tools/eslint-config": "2.0.0",
"@pocket-tools/tsconfig": "2.0.1",
"@types/chai": "4.3.5",
"@types/faker": "6.6.8",
"@types/graphql-upload": "8.0.12",
"@types/jest": "29.5.3",
"@types/node": "18.16.19",
"@types/sinon": "10.0.15",
"chai": "4.3.7",
"dotenv": "16.3.1",
"form-data": "4.0.0",
"husky": "8.0.3",
"jest": "29.6.1",
"nock": "13.3.2",
"nodemon": "3.0.1",
"prisma": "^4.16.1",
"sinon": "15.2.0",
"supertest": "6.3.3",
"ts-jest": "29.1.1",
"ts-node": "10.9.1"
}
}