-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
127 lines (127 loc) · 4.28 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
{
"name": "tekal-dashboard-backend",
"version": "1.0.0",
"description": "",
"main": "./dist/src/server/server.js",
"scripts": {
"start": "cross-env NODE_ENV=local ts-node-dev --respawn src/server/server.ts",
"start:debug": "cross-env NODE_ENV=local ts-node-dev --transpile-only --respawn --inspect=4321 src/server/server.ts",
"build": "tsc",
"lint": "eslint --max-warnings 0 \"{src,tests,testsMongo}/**/*.ts\"",
"lint:staged": "lint-staged",
"typeorm": "node --require ts-node/register ./node_modules/typeorm/cli.js"
},
"engines": {
"npm": ">=6.0.0",
"node": ">=14.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tekal-ai/tekal-dashboard-backend.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@aws/dynamodb-data-mapper": "^0.7.3",
"@aws/dynamodb-data-mapper-annotations": "^0.7.3",
"@graphql-tools/schema": "^8.5.1",
"@sentry/serverless": "^6.19.7",
"@slack/webhook": "^6.1.0",
"@typegoose/typegoose": "^9.9.0",
"@types/bcryptjs": "^2.4.2",
"@types/expect": "^24.3.0",
"@types/express": "^4.17.13",
"@types/graphql-upload": "^8.0.11",
"@types/jwt-simple": "^0.5.33",
"@types/mailchimp__mailchimp_transactional": "^1.0.3",
"@types/node": "^17.0.38",
"apollo-server": "^3.8.1",
"apollo-server-core": "^3.10.0",
"apollo-server-express": "^3.10.0",
"aws-sdk": "^2.1146.0",
"axios": "^0.26.1",
"bcryptjs": "^2.4.3",
"class-transformer": "^0.5.1",
"class-validator": "^0.13.2",
"cross-env": "^7.0.3",
"cryptr": "^6.0.3",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"graphql": "^15.8.0",
"graphql-fields-list": "^2.2.4",
"graphql-redis-subscriptions": "^2.5.0",
"graphql-scalars": "^1.18.0",
"graphql-subscriptions": "^2.0.0",
"graphql-upload": "^13.0.0",
"helmet": "^7.0.0",
"jwt-simple": "^0.5.6",
"mongoose": "^6.3.5",
"mysql2": "^2.3.3",
"redis": "^3.1.2",
"reflect-metadata": "^0.1.13",
"subscriptions-transport-ws": "^0.11.0",
"ts-md5": "^1.2.11",
"type-graphql": "^1.1.1",
"typedi": "^0.10.0",
"typeorm": "^0.2.45",
"typeorm-aurora-data-api-driver": "^2.4.2",
"typeorm-typedi-extensions": "^0.4.1",
"typescript": "^4.7.4",
"typescript-json-serializer": "^3.4.5",
"ulid": "^2.3.0",
"winston": "^3.8.2",
"winston-sentry-log": "^1.0.26",
"zxcvbn": "^4.4.2"
},
"devDependencies": {
"@linnify/typeorm-factory": "^1.0.12",
"@testdeck/di-typedi": "^0.2.0",
"@types/chai": "^4.3.1",
"@types/chai-as-promised": "^7.1.5",
"@types/cryptr": "^4.0.1",
"@types/redis": "^2.8.32",
"@types/redis-mock": "^0.17.1",
"@types/zxcvbn": "^4.4.1",
"@typescript-eslint/eslint-plugin": "^5.27.0",
"@typescript-eslint/parser": "^5.27.0",
"chai": "^4.3.6",
"chai-as-promised": "^7.1.1",
"chokidar": "^3.5.3",
"eslint": "^8.16.0",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^7.0.4",
"lint-staged": "^13.0.3",
"mocha": "^9.2.2",
"mocha-typescript": "^1.1.17",
"mock-req-res": "^1.2.0",
"mockdate": "^3.0.5",
"mongodb-memory-server": "^8.7.1",
"nodemon": "^2.0.16",
"nyc": "^15.1.0",
"open-cli": "^7.0.1",
"prettier": "2.5.1",
"prettier-plugin-organize-imports": "^3.0.0",
"redis-mock": "^0.56.3",
"sinon": "^14.0.0",
"spectaql": "^0.12.0",
"sqlite3": "^5.0.8",
"ts-mocha": "^9.0.2",
"ts-mockito": "^2.6.1",
"ts-node": "^10.8.0",
"ts-node-dev": "^2.0.0",
"typeorm-transactional-tests": "^1.1.5"
},
"nyc": {
"exclude": [
"config/**",
"src/database/**",
"tests/**"
]
},
"lint-staged": {
"{src,tests,testsMongo}/**/*.ts": "eslint --max-warnings 0 --no-ignore"
}
}