-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.76 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
{
"name": "heirs-backend",
"version": "1.0.0",
"description": "Heirs is a game like Monopoly. This is a backend repo",
"main": "/build/src/server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "npx nodemon",
"build": "yarn prisma migrate dev && rimraf ./build && tsc",
"start": "node build/src/server.js"
},
"keywords": [
"Monopoly",
"Graphql",
"Apollo"
],
"author": "",
"license": "ISC",
"dependencies": {
"@apollo/server": "^4.9.5",
"@graphql-tools/schema": "^10.0.2",
"@graphql-yoga/subscription": "^5.0.0",
"@prisma/client": "^5.7.1",
"@types/graphql-fields": "^1.3.9",
"@types/node-cron": "^3.0.11",
"@types/ws": "^8.5.10",
"bcrypt": "^5.1.1",
"catch-decorator": "^2.0.0",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"graphql": "^16.6.0",
"graphql-fields": "^2.0.3",
"graphql-scalars": "^1.22.4",
"graphql-ws": "^5.14.3",
"node-cron": "^3.0.3",
"prisma": "^5.7.1",
"redis": "^4.6.12",
"reflect-metadata": "^0.2.1",
"tslib": "^2.6.2",
"type-graphql": "2.0.0-beta.4",
"typedi": "^0.10.0",
"typegraphql-prisma": "^0.27.1",
"uuid": "^9.0.1",
"ws": "^8.16.0",
"typescript": "^5.3.3"
},
"devDependencies": {
"@types/bcrypt": "^5.0.2",
"@types/cors": "^2.8.17",
"@types/redis": "^4.0.11",
"@types/uuid": "^9.0.7",
"@typescript-eslint/eslint-plugin": "^6.4.0",
"eslint": "^8.0.1",
"eslint-config-standard-with-typescript": "^43.0.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-n": "^15.0.0 || ^16.0.0 ",
"eslint-plugin-promise": "^6.0.0",
"nodemon": "^3.0.2",
"rimraf": "^5.0.5",
"ts-node": "^10.9.2",
"ts-node-dev": "^2.0.0"
}
}