-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.65 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.65 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
{
"name": "github-react-app",
"version": "1.0.1",
"description": "A simple full-stack application to work with Github",
"main": "./build/src/index.js",
"scripts": {
"build": "rimraf ./build && tsc",
"start": "node ./build/src/index.js",
"start:dev": "ts-node-dev ./src/index.ts",
"test": "jest",
"lint": "eslint . --ext .ts",
"sonar": "node sonar-project.js"
},
"author": "Yurii Pakhota",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.19.1",
"@babel/preset-env": "^7.19.1",
"@babel/preset-typescript": "^7.18.6",
"@octokit/types": "^7.5.0",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/jest": "^29.0.3",
"@types/swagger-ui-express": "^4.1.3",
"@typescript-eslint/eslint-plugin": "^5.38.0",
"babel-jest": "^29.0.3",
"eslint": "^8.23.1",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-jest": "^27.1.3",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-security": "^1.5.0",
"jest": "^29.0.3",
"jest-sonar-reporter": "^2.0.0",
"node-mocks-http": "^1.11.0",
"rimraf": "^3.0.2",
"sonarqube-scanner": "^2.8.2",
"ts-jest": "^29.0.1",
"ts-node": "^10.9.1",
"ts-node-dev": "^2.0.0",
"typescript": "^4.7.4"
},
"dependencies": {
"@babel/plugin-proposal-decorators": "^7.19.3",
"@octokit/request-error": "^3.0.1",
"app-root-path": "^3.1.0",
"axios": "^0.27.2",
"cors": "^2.8.5",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"inversify": "^6.0.1",
"inversify-express-utils": "^6.4.3",
"octokit": "^2.0.7",
"reflect-metadata": "^0.1.13",
"swagger-ui-express": "^4.5.0"
}
}