-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.74 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
{
"name": "offline-service-uptime",
"version": "1.0.0",
"description": "Offline Service Uptime Monitoring",
"main": "index.js",
"license": "MIT",
"private": false,
"dependencies": {
"@types/axios": "^0.14.0",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.2",
"@types/faker": "^4.1.7",
"@types/graphql-type-json": "^0.3.2",
"@types/i18n": "^0.8.6",
"@types/jsonwebtoken": "^8.3.5",
"@types/pg": "^7.11.2",
"@types/shortid": "^0.0.29",
"@types/uuid": "^3.4.6",
"apollo-server-express": "^2.9.9",
"axios": "^0.19.0",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"faker": "^4.1.0",
"graphql": "^14.5.8",
"graphql-import": "^0.7.1",
"graphql-type-json": "^0.3.1",
"i18n": "^0.8.4",
"jsonwebtoken": "^8.5.1",
"pg": "^7.13.0",
"prom-client": "^11.5.3",
"shortid": "^2.2.15",
"sql-tag": "^1.0.1",
"telegraf": "^3.33.3",
"telegraf-session-redis": "^5.1.0",
"ts-jest": "^24.2.0",
"ts-node": "^8.5.0",
"typescript": "^3.7.2",
"uuid": "^3.3.3"
},
"devDependencies": {
"@graphql-codegen/cli": "^1.8.3",
"@graphql-codegen/introspection": "1.8.3",
"@graphql-codegen/typescript": "1.8.3",
"@graphql-codegen/typescript-resolvers": "1.8.3",
"@types/jest": "^24.0.23",
"jest": "^24.9.0",
"prettier": "^1.19.1",
"telegram-test-api": "^2.4.2",
"ts-node-dev": "^1.0.0-pre.44"
},
"scripts": {
"start": "ts-node src/server.ts",
"test": "NODE_ENV=test jest",
"dev": "ts-node-dev src/server.ts",
"generate": "graphql-codegen --config codegen.yml && yarn format",
"format": "prettier --config .prettierrc.yml --write './**/*.{graphql,ts,json}'"
}
}