-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.26 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.26 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
{
"name": "graphql-typescript-backend",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"dev": "ts-node-dev --respawn --transpile-only src/index.ts",
"build": "tsc",
"start": "node dist/index.js",
"format": "prettier --write \"src/**/*.ts\"",
"lint": "eslint \"src/**/*.ts\" --fix",
"test": "vitest",
"test:ui": "vitest --ui",
"coverage": "vitest run --coverage"
},
"dependencies": {
"@prisma/client": "^5.21.1",
"argon2": "^0.41.1",
"class-validator": "^0.14.1",
"graphql": "^16.8.1",
"graphql-scalars": "^1.23.0",
"graphql-yoga": "^5.1.1",
"jsonwebtoken": "^9.0.2",
"reflect-metadata": "^0.2.2",
"type-graphql": "^2.0.0-beta.3",
"winston": "^3.11.0"
},
"devDependencies": {
"@types/jsonwebtoken": "^9.0.7",
"@types/node": "^20.11.0",
"@typescript-eslint/eslint-plugin": "^8.11.0",
"@typescript-eslint/parser": "^8.11.0",
"@vitest/coverage-v8": "2.1.3",
"@vitest/ui": "^2.1.3",
"eslint": "^9.13.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"prettier": "^3.3.3",
"prettier-plugin-organize-imports": "^4.1.0",
"prisma": "^5.21.1",
"ts-node-dev": "^2.0.0",
"typescript": "^5.3.3",
"vitest": "^2.1.3"
}
}