-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.62 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
{
"name": "ilgiotizm-api",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"dev": "ts-node-dev --tree-kill --no-notify --respawn --exit-child src/index.ts",
"start": "node dist/index",
"clean": "rm -rf dist",
"build": "npm -s run clean && npm -s run generate && tsc",
"generate": "prisma generate",
"push": "prisma db push"
},
"devDependencies": {
"@types/app-root-path": "^1.2.4",
"@types/bcryptjs": "^2.4.2",
"@types/graphql-upload": "^8.0.10",
"@types/ioredis": "^4.28.8",
"@types/jsonwebtoken": "^8.5.8",
"@types/node": "^17.0.17",
"@types/sharp": "^0.29.5",
"@types/speakingurl": "^13.0.3",
"prisma": "3.9.2",
"ts-node": "^10.5.0",
"ts-node-dev": "^1.1.8",
"typegraphql-prisma": "^0.18.5",
"typescript": "^4.5.5"
},
"dependencies": {
"@google-cloud/storage": "^5.18.1",
"@prisma/client": "3.9.2",
"@sendgrid/mail": "^7.6.1",
"@types/graphql-fields": "^1.3.4",
"apollo-server-core": "^3.6.3",
"apollo-server-express": "^3.6.3",
"app-root-path": "^3.0.0",
"axios": "^0.27.2",
"bcryptjs": "^2.4.3",
"class-validator": "^0.13.2",
"cors": "^2.8.5",
"dayjs": "^1.10.8",
"dotenv": "^16.0.0",
"express": "^4.17.2",
"graphql": "15.3.0",
"graphql-fields": "^2.0.3",
"graphql-scalars": "^1.14.1",
"graphql-upload": "^13.0.0",
"ioredis": "^4.28.5",
"jsonwebtoken": "^8.5.1",
"reflect-metadata": "^0.1.13",
"sharp": "^0.30.1",
"speakingurl": "^14.0.1",
"subscriptions-transport-ws": "^0.11.0",
"tslib": "^2.3.1",
"type-graphql": "1.1.1"
}
}