This repository has been archived by the owner on Oct 28, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
92 lines (92 loc) · 2.67 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
{
"name": "prisma-template",
"repository": {
"url": "https://github.com/2wce/prisma-template"
},
"author": {
"name": "Kudakwashe Terrence Mupeni",
"url": "http://2wce.github.io",
"email": "kudamupeni@icloud.com"
},
"license": "MIT",
"scripts": {
"prestart": "npm run generate && npm run reset",
"start": "ts-node-dev --respawn --transpile-only src",
"reset": "npx prisma migrate reset -f",
"seed": "ts-node prisma/seed.ts",
"generate": "prisma generate && graphql-codegen",
"studio": "prisma studio",
"migrate": "prisma migrate dev",
"postmigrate": "yarn generate",
"pretest": "graphql-codegen",
"test": "jest",
"docker:up": "docker-compose up -d",
"docker:down": "docker-compose down",
"prepare": "husky install",
"lint": "eslint --fix --ext .ts ."
},
"dependencies": {
"@graphql-tools/schema": "^8.2.0",
"@prisma/client": "^4.5.0",
"apollo-server": "2.25.4",
"bcryptjs": "2.4.3",
"factory.ts": "^0.5.2",
"faker": "^5.5.3",
"graphql": "15.6.1",
"graphql-middleware": "^6.1.8",
"graphql-scalars": "1.10.1",
"graphql-shield": "^7.5.0",
"graphql-tools": "^8.1.0",
"jest-mock-extended": "^2.0.4",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.21",
"nodemailer": "^6.7.0"
},
"devDependencies": {
"@graphql-codegen/cli": "^2.2.0",
"@graphql-codegen/typescript": "2.2.4",
"@graphql-codegen/typescript-resolvers": "2.3.2",
"@semantic-release/changelog": "^6.0.0",
"@semantic-release/commit-analyzer": "^9.0.1",
"@semantic-release/git": "^10.0.0",
"@semantic-release/github": "^8.0.1",
"@semantic-release/npm": "^8.0.0",
"@semantic-release/release-notes-generator": "^10.0.2",
"@types/bcryptjs": "2.4.2",
"@types/faker": "^5.5.8",
"@types/jest": "27.0.2",
"@types/lodash": "4.14.175",
"@types/node": "14.17.27",
"@types/ws": "8.2.0",
"@typescript-eslint/eslint-plugin": "^5.6.0",
"@typescript-eslint/parser": "^5.6.0",
"ansi-regex": "6.0.1",
"eslint": "^8.4.1",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^16.1.0",
"eslint-plugin-import": "^2.25.3",
"husky": "^7.0.4",
"jest": "^27.2.5",
"prettier": "2.4.1",
"prisma": "^4.5.0",
"semantic-release": "^18.0.0",
"string-width": "5.0.1",
"strip-ansi": "6.0.1",
"ts-jest": "^27.0.6",
"ts-node": "10.3.0",
"ts-node-dev": "1.1.8",
"typescript": "4.4.4"
},
"engines": {
"node": ">=14.17"
},
"prisma": {
"seed": "ts-node prisma/seed.ts"
},
"resolutions": {
"ansi-regex": "6.0.1",
"strip-ansi": "6.0.1",
"string-width": "5.0.1",
"ws": "7.4.6"
}
}