This repository has been archived by the owner on Mar 1, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.6 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
{
"name": "beep-api",
"version": "1.0.0",
"description": "REST API for the Beep App in Typescript",
"main": "build/src/server.js",
"scripts": {
"test": "npx jest --maxWorkers=10",
"build": "tsoa spec-and-routes && npx tsc",
"start": "node build/src/server.js"
},
"repository": {
"type": "git",
"url": "https://gitlab.nussman.us/banks/Beep-API-v3.git"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"roots": [
"<rootDir>/src"
]
},
"author": "Banks Nussman",
"license": "ISC",
"dependencies": {
"@sentry/integrations": "^6.10.0",
"@sentry/node": "^6.10.0",
"@sentry/tracing": "^6.10.0",
"@types/aws-sdk": "^2.7.0",
"aws-sdk": "^2.820.0",
"cors": "^2.8.5",
"express": "^4.17.1",
"js-sha256": "^0.9.0",
"multer": "^1.4.2",
"node-fetch": "^2.6.1",
"node-input-validator": "^4.2.1",
"nodemailer": "^6.4.17",
"rethinkdb": "^2.4.2",
"tsoa": "^3.4.0",
"uuid": "^8.3.2"
},
"devDependencies": {
"@types/cors": "^2.8.9",
"@types/express": "^4.17.0",
"@types/jest": "^26.0.19",
"@types/multer": "^1.4.5",
"@types/node-fetch": "^2.5.7",
"@types/nodemailer": "^6.4.0",
"@types/uuid": "^8.3.0",
"@typescript-eslint/eslint-plugin": "^3.10.1",
"@typescript-eslint/parser": "^3.10.1",
"eslint": "^7.17.0",
"jest": "^26.6.3",
"ts-jest": "^26.4.4",
"typescript": "^4.1.3"
}
}