-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.61 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.61 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
{
"name": "github-user-cli",
"version": "1.0.0",
"description": "A CLI to fetch and store GitHub user data",
"main": "dist/cli.js",
"scripts": {
"build": "tsc",
"start": "ts-node src/cli/index.ts",
"docker-build": "docker-compose build",
"docker-up": "docker-compose up -d",
"docker-down": "docker-compose down",
"migrate": "docker-compose run --rm app psql -U $DB_USER -d $DB_NAME -f src/migrations/001_initial_schema.sql",
"test": "jest",
"test:watch": "jest --watch"
},
"dependencies": {
"axios": "^1.7.6",
"axios-mock-adapter": "^2.0.0",
"commander": "^12.1.0",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"knex": "^3.1.0",
"pg": "^8.12.0",
"pg-promise": "^11.9.1",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.1"
},
"devDependencies": {
"@babel/preset-env": "^7.25.4",
"@babel/preset-typescript": "^7.24.7",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.12",
"@types/multer": "^1.4.12",
"@types/supertest": "^6.0.2",
"@types/swagger-jsdoc": "^6.0.4",
"@types/swagger-ui-express": "^4.1.6",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"eslint": "^8.0.0",
"jest": "^29.7.0",
"multer": "^1.4.5-lts.1",
"sinon": "^18.0.0",
"supertest": "^7.0.0",
"ts-jest": "^29.2.5",
"ts-node": "^10.0.0",
"typescript": "^4.0.0"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"testMatch": [
"**/__tests__/**/*.ts?(x)",
"**/?(*.)+(spec|test).ts?(x)"
]
},
"author": "Your Name",
"license": "MIT"
}