-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
65 lines (65 loc) · 1.67 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
{
"name": "teams-sync",
"version": "1.0.0",
"description": "",
"main": "app.ts",
"module": "es2015",
"scripts": {
"test:unit": "jest test/unit",
"test:int": "jest test/integration",
"test:all": "jest --coverage --reporters=jest-junit",
"test": "jest test/unit",
"dev": "nodemon",
"start": "node ./out/app.js",
"build": "tsc && shx cp ./src/openapi.yaml ./out/openapi.yaml",
"openapi": "npx -y openapi-to-ts -i ./src/openapi.yaml -o ./src/types/sync-models.d.ts",
"play": "ts-node playground.ts"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@jest/globals": "^29.7.0",
"@octokit/types": "^13.4.0",
"@types/express": "^4.17.17",
"@types/js-yaml": "^4.0.5",
"@types/node": "^20.4.8",
"@types/swagger-ui-express": "^4.1.3",
"graphql-tag": "^2.12.6",
"jest": "^29.7.0",
"jest-junit": "^16.0.0",
"nodemon": "^3.0.2",
"shx": "^0.3.4",
"ts-jest": "^29.2.5",
"ts-mockito": "^2.6.1",
"ts-node": "^10.9.1",
"typescript": "^5.6.3"
},
"dependencies": {
"@octokit/auth-app": "6.1.1",
"applicationinsights": "^3.2.1",
"axios": "^1.4.0",
"axios-retry": "^4.0.0",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"js-yaml": "^4.1.0",
"nocache": "^4.0.0",
"octokit": "3.2.1",
"openapi-backend": "^5.9.1",
"redis": "^4.7.0",
"swagger-ui-express": "5.0.0"
},
"nodemonConfig": {
"watch": [
"src"
],
"ext": "ts,json,yaml",
"ignore": [
"src/**/*.spec.ts"
],
"exec": "ts-node ./src/app.ts"
},
"graphql": {
"schema": "https://api.github.com/graphql",
"documents": "**/*.{graphql,js,ts,jsx,tsx}"
}
}