-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 2.02 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 2.02 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "typescript-graphql-api-templateuserservice",
"version": "1.0.0",
"description": "Accounting for the everyday human.",
"main": "index.js",
"scripts": {
"start": "node ./dist/app.js",
"dev": "npx nodemon",
"build": "tsc -p .",
"build:start": "npm run build && npm run start",
"test": "jest --ci --color --coverage",
"test:partial": "jest --ci --silent --onlyChanged --color --coverage",
"prettier": "prettier --write \"**/*.{js,jsx,ts,tsx,json,md}\""
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@apollo/server": "^4.11.0",
"@apollo/subgraph": "^2.8.4",
"@google-cloud/local-auth": "^3.0.1",
"@graphql-tools/schema": "^10.0.4",
"@types/pg": "^8.11.6",
"apollo-server-core": "^3.13.0",
"apollo-server-express": "^3.13.0",
"axios": "^1.7.3",
"bcrypt": "^5.1.1",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"googleapis": "^140.0.1",
"graphql": "^16.9.0",
"graphql-redis-subscriptions": "^2.6.1",
"graphql-subscriptions": "^2.0.0",
"graphql-ws": "^5.16.0",
"joi": "^17.13.3",
"jsonwebtoken": "^9.0.2",
"mongoose": "^8.5.2",
"morgan": "^1.10.0",
"nodemailer": "^6.9.14",
"pg": "^8.12.0",
"redis": "^4.7.0",
"typescript": "^5.5.4",
"uuid": "^10.0.0",
"winston": "^3.14.1",
"ws": "^8.18.0"
},
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/express": "^4.17.13",
"@types/jest": "^29.5.1",
"@types/joi": "^17.2.3",
"@types/jsonwebtoken": "^8.5.8",
"@types/morgan": "^1.9.3",
"@types/node": "^17.0.10",
"@types/nodemailer": "^6.4.8",
"@types/uuid": "^8.3.4",
"@types/winston": "^2.4.4",
"@types/ws": "^8.5.3",
"nodemon": "^2.0.15",
"prettier": "^2.8.8",
"ts-node": "^10.4.0"
}
}