This repository has been archived by the owner on Aug 23, 2024. It is now read-only.
generated from Sudokuru/.github
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
48 lines (48 loc) · 1.65 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
{
"name": "backend",
"version": "1.0.0",
"description": "This is the backend for the sudokuru service",
"main": "index.js",
"scripts": {
"test:unit": "jest --testPathPattern=src/tests/unit",
"test:integration": "dotenv -- cross-var newman run \"postman/collections/Sudokuru-Backend.json\" --environment \"https://api.getpostman.com/environments/%POSTMAN_ENV_ID%?apikey=%POSTMAN_API_KEY%\"",
"test:integration500s": "newman run \"postman/collections/Sudokuru-Backend-500s\"",
"update-docs": "typedoc --entryPoints src --entryPointStrategy expand --out docs --plugin typedoc-theme-hierarchy --theme hierarchy",
"docker": "docker-compose up -d",
"app": "docker-compose -f docker-compose-app.yml up -d",
"start": "ts-node src/app.ts local",
"deploy": "tsc && serverless deploy -c serverless.yml"
},
"repository": {
"type": "git",
"url": "https://github.com/SudoKuru/Backend.git"
},
"keywords": [],
"author": "Sudokuru",
"license": "ISC",
"bugs": {
"url": "https://github.com/SudoKuru/Backend/issues"
},
"homepage": "https://github.com/SudoKuru/Backend#readme",
"dependencies": {
"@types/mongoose": "^5.11.97",
"express": "^4.18.2",
"express-oauth2-jwt-bearer": "^1.3.0",
"express-validator": "^6.14.2",
"mongoose": "^6.8.1",
"serverless-http": "^3.1.0"
},
"devDependencies": {
"@types/jest": "^29.2.4",
"cross-var": "^1.1.0",
"dotenv-cli": "^6.0.0",
"jest": "^29.3.1",
"jest-junit": "^15.0.0",
"newman": "^5.3.2",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"typedoc": "^0.23.6",
"typedoc-theme-hierarchy": "^3.0.0 -D",
"typescript": "^4.9.4"
}
}