This repository was archived by the owner on May 29, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.93 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.93 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
65
66
67
{
"devDependencies": {
"@tsconfig/node16": "^1.0.2",
"@types/amqp": "^0.2.5",
"@types/amqplib": "^0.8.2",
"@types/chai": "^4.3.0",
"@types/compression": "^1.7.2",
"@types/cors": "^2.8.12",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.13",
"@types/express-fileupload": "^1.2.2",
"@types/graphql": "^14.5.0",
"@types/mocha": "^9.1.0",
"@types/node": "^17.0.19",
"@types/sinon": "^10.0.11",
"@types/sinon-chai": "^3.2.8",
"@types/vhost": "^3.0.4",
"@typescript-eslint/eslint-plugin": "^5.12.1",
"@typescript-eslint/parser": "^5.12.1",
"chai": "^4.3.6",
"eslint": "^8.9.0",
"gulp": "^4.0.2",
"mocha": "^9.2.1",
"nodemon": "^2.0.15",
"nyc": "^15.1.0",
"prisma": "^3.10.0",
"ts-node": "^10.5.0",
"typescript": "^4.5.5"
},
"name": "master-api",
"version": "1.0.0",
"main": "src/index.ts",
"repository": "https://github.com/Reppo-bot/master-api",
"author": "17robots <mdray@ameritech.net>",
"license": "MIT",
"scripts": {
"lint": "eslint . --fix",
"test:e2e": "mocha -r ts-node/register **/*.spec.ts",
"test:unit": "mocha -r ts-node/register **/*.spec.ts",
"coverage": "nyc -r lcov -e .ts -x \"*.test.ts\" yarn test",
"run:dev": "ts-node --transpile-only src/index.ts",
"watch:dev": "nodemon src/index.ts"
},
"dependencies": {
"@prisma/client": "^3.10.0",
"amqp": "^0.2.7",
"amqplib": "^0.8.0",
"apicache": "^1.6.3",
"axios": "^0.26.1",
"body-parser": "^1.19.2",
"compression": "^1.7.4",
"cors": "^2.8.5",
"dotenv": "^16.0.0",
"express": "^4.17.3",
"express-fileupload": "^1.3.1",
"express-rate-limiter": "^1.3.1",
"graphql": "^16.3.0",
"graphql-tools": "^8.2.0",
"helmet": "^5.0.2",
"http-proxy-middleware": "^2.0.3",
"jsonwebtoken": "^8.5.1",
"segfault-handler": "^1.3.0",
"sinon": "^13.0.2",
"sinon-chai": "^3.7.0",
"vhost": "^3.0.2"
}
}