-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.87 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.87 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
{
"name": "cine-tasty-server",
"version": "1.0.0",
"description": "",
"main": "src/app.js",
"scripts": {
"start:dev": "npx ts-node-dev --transpile-only -r tsconfig-paths/register --ignore-watch node_modules src/app.ts",
"codegen:generate": "graphql-codegen --config codegen.yml",
"codegen:init": "npx graphql-code-generator init",
"prettier:fix": "npx prettier '**/*.ts' --write",
"lint:fix": "npx eslint . --ext .ts --fix",
"build": "tsc -p tsconfig.json && tsc-alias",
"prepare": "husky install",
"test": "jest --passWithNoTests --no-cache",
"test:watch": "jest --watch",
"test:integration": "npm test -- --watch --testMatch **/*.spec.ts --runInBand",
"test:unit": "npm test -- --watch --testMatch **/*.test.ts",
"test:coverage": "jest --coverage --passWithNoTests",
"docs:generate": "npx spectaql spectaql-config.yaml -t ./docs"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@graphql-codegen/cli": "5.0.0",
"@graphql-codegen/introspection": "4.0.0",
"@graphql-codegen/typescript": "4.0.1",
"@graphql-codegen/typescript-resolvers": "4.0.1",
"@types/he": "^1.2.1",
"@types/jest": "^29.5.5",
"@types/node": "^20.6.3",
"@types/redis": "^4.0.11",
"@typescript-eslint/eslint-plugin": "^6.7.2",
"@typescript-eslint/parser": "^6.7.2",
"eslint": "^8.49.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"husky": "^8.0.0",
"jest": "^29.7.0",
"prettier": "^3.0.3",
"spectaql": "^2.3.1",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"ts-node-dev": "^2.0.0",
"tsc-alias": "^1.8.8",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.2.2"
},
"dependencies": {
"@apollo/datasource-rest": "^6.2.0",
"@apollo/server": "^4.9.3",
"graphql": "^16.8.1",
"he": "^1.2.0",
"redis": "^4.6.10"
}
}