-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·63 lines (63 loc) · 1.97 KB
/
package.json
File metadata and controls
executable file
·63 lines (63 loc) · 1.97 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
{
"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": {
"@google-cloud/local-auth": "2.1.0",
"@graphql-tools/schema": "^8.3.13",
"apollo-server-core": "^3.8.2",
"apollo-server-express": "^3.8.2",
"axios": "^1.4.0",
"bcrypt": "^5.0.1",
"cors": "^2.8.5",
"dotenv": "^14.3.2",
"express": "^4.17.3",
"googleapis": "105",
"graphql": "^16.5.0",
"graphql-redis-subscriptions": "^2.4.2",
"graphql-subscriptions": "^2.0.0",
"graphql-ws": "^5.8.2",
"joi": "^17.6.0",
"jsonwebtoken": "^8.5.1",
"kafkajs": "^2.2.4",
"mongoose": "^7.1.1",
"morgan": "^1.10.0",
"nodemailer": "^6.9.3",
"redis": "^4.6.13",
"typescript": "^4.6.3",
"uuid": "^8.3.2",
"winston": "^3.7.2",
"ws": "^8.7.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",
"jest": "^29.5.0",
"nodemon": "^2.0.15",
"prettier": "^2.8.8",
"ts-jest": "^29.1.0",
"ts-node": "^10.4.0"
}
}