-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 2.57 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
{
"name": "movie-ts-graphql",
"version": "0.0.1",
"description": "",
"author": "",
"private": true,
"license": "GPL-3.0",
"scripts": {
"test": "jest",
"test:cov": "jest --coverage",
"test:e2e": "jest --config ./test/jest-e2e.json",
"build": "tsc -p tsconfig.build.json",
"lint": "eslint .",
"format": "prettier . --write",
"fmt": "npm run format",
"lint-fmt": "npm run lint && npm run fmt",
"build:watch": "tsc --watch",
"start": "node -r source-map-support/register dist/main.js ",
"start:dev": "nodemon --watch \"src/**\" --ext \"ts,json\" --ignore \"src/**/*.test.ts\" --exec 'tsc -p tsconfig.build.json&& node -r source-map-support/register dist/main' "
},
"dependencies": {
"@apollo/server": "^4.9.3",
"@as-integrations/fastify": "^2.0.0",
"@aws-sdk/client-s3": "^3.345.0",
"@fastify/multipart": "^7.7.0",
"@prisma/client": "4.14.0",
"@types/argon2": "^0.15.0",
"@types/jsonwebtoken": "^9.0.2",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.0",
"cuid": "^3.0.0",
"fastify": "^4.19.2",
"graphql": "^16.8.1",
"jsonwebtoken": "^9.0.1",
"reflect-metadata": "^0.1.13",
"sharp": "^0.32.6",
"tsyringe": "^4.8.0",
"type-graphql": "^2.0.0-beta.2"
},
"devDependencies": {
"@types/express": "^4.17.13",
"@types/jest": "29.5.0",
"@types/node": "18.15.11",
"@types/supertest": "^2.0.11",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"concurrently": "^7.2.2",
"cspell": "^6.12.0",
"eslint": "^8.0.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"jest": "29.5.0",
"nodemon": "^2.0.19",
"prettier": "^2.3.2",
"prisma": "^4.14.0",
"source-map-support": "^0.5.20",
"supertest": "^6.1.3",
"ts-jest": "29.0.5",
"ts-loader": "^9.2.3",
"ts-node": "^10.0.0",
"tsconfig-paths": "4.2.0",
"typescript": "^4.7.4"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "src",
"testRegex": ".*\\.spec\\.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"collectCoverageFrom": [
"**/*.(t|j)s"
],
"coverageDirectory": "../coverage",
"testEnvironment": "node"
}
}