-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
64 lines (64 loc) · 2.11 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
{
"name": "pagerenderapi",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "jest",
"test:coverage": "jest --coverage",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix",
"validate": "npm run lint && npm run test",
"prepare": "husky install",
"generate": "graphql-codegen --config codegen.yml",
"compile": "npm run generate && tsc",
"start": "npm run compile && node --experimental-specifier-resolution=node ./dist/index.js",
"watch": "concurrently --names \"CodeGen,TS,Nodemon\" -c \"bgYellow,bgBlue,bgMagenta\" \"graphql-codegen --watch 'src/**/*.ts'\" \"tsc -w \" \"nodemon --experimental-specifier-resolution=node ./dist/index.js \"",
"docker:start": "docker-compose -f docker-compose.yaml -f docker-compose.dev.yaml up",
"docker:dev": "docker-compose -f docker-compose.dev.yaml up"
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "module",
"dependencies": {
"@apollo/server": "^4.9.1",
"@aws-sdk/client-s3": "^3.405.0",
"@aws-sdk/s3-request-presigner": "^3.405.0",
"body-parser": "^1.20.2",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"graphql": "^16.7.1",
"graphql-scalars": "^1.22.2",
"http": "^0.0.1-security",
"pg": "^8.11.3",
"pony-cause": "^2.1.10",
"puppeteer": "^21.1.1",
"uuid": "^9.0.0"
},
"devDependencies": {
"@graphql-codegen/add": "^5.0.0",
"@graphql-codegen/cli": "^5.0.0",
"@graphql-codegen/typescript": "^4.0.1",
"@graphql-codegen/typescript-resolvers": "^4.0.1",
"@types/cors": "^2.8.13",
"@types/jest": "^29.5.4",
"@types/node": "^20.4.9",
"@types/pg": "^8.10.2",
"@types/supertest": "^2.0.12",
"@types/uuid": "^9.0.2",
"@typescript-eslint/eslint-plugin": "^6.4.1",
"@typescript-eslint/parser": "^6.4.1",
"concurrently": "^8.2.1",
"eslint": "^8.48.0",
"eslint-config-standard": "^17.1.0",
"husky": "^8.0.3",
"jest": "^29.6.4",
"nodemon": "^3.0.1",
"pg-mem": "^2.6.13",
"supertest": "^6.3.3",
"ts-jest": "^29.1.1",
"typescript": "^5.1.6"
}
}