-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.55 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
{
"name": "kaarma-backend",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "ts-node-dev --transpile-only --no-notify src/index.ts",
"generate": "ts-node --transpile-only src/schema.ts",
"test": "npm run generate && jest",
"start": "ts-node src/index.ts"
},
"jest": {
"preset": "ts-jest",
"globals": {
"ts-jest": {
"diagnostics": {
"warnOnly": true
}
}
},
"testEnvironment": "node"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@google-cloud/storage": "^5.20.5",
"@prisma/client": "^2.24.1",
"apollo-server": "^2.25.0",
"bcrypt": "^5.0.1",
"body-parser": "^1.20.0",
"google-auth-library": "^7.14.1",
"graphql": "^15.5.0",
"graphql-middleware": "^6.1.13",
"graphql-scalars": "^1.17.0",
"graphql-shield": "^7.5.0",
"graphql-upload": "^13.0.0",
"jsonwebtoken": "^8.5.1",
"multer": "^1.4.4",
"nexus": "^1.0.0",
"nodemailer": "^6.7.3",
"reflect-metadata": "^0.1.13",
"secure-random-password": "^0.2.3",
"ts-node": "^10.0.0",
"uuid": "^8.3.2"
},
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/graphql": "^14.5.0",
"@types/graphql-upload": "^8.0.11",
"@types/jsonwebtoken": "^8.5.8",
"@types/nodemailer": "^6.4.4",
"@types/secure-random-password": "^0.2.1",
"@types/uuid": "^8.3.4",
"get-port": "^5.1.1",
"graphql-request": "^3.4.0",
"prisma": "^2.24.1",
"ts-node-dev": "^1.1.6",
"typescript": "^4.3.2"
}
}