-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.04 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
{
"name": "github-users-node-project",
"version": "1.0.0",
"type": "module",
"main": "index.js",
"scripts": {
"build": "tsc",
"dev": "nodemon ./build/index.js",
"start-dev": "tsc && npm run dev",
"test": "jest"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"devDependencies": {
"@babel/core": "^7.24.9",
"@babel/preset-env": "^7.24.8",
"@babel/preset-typescript": "^7.24.7",
"@eslint/js": "^9.7.0",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.12",
"@types/node": "^20.14.11",
"@types/node-fetch": "^2.6.11",
"@typescript-eslint/parser": "^7.17.0",
"eslint": "^9.7.0",
"globals": "^15.8.0",
"jest": "^29.7.0",
"nodemon": "^3.1.4",
"ts-jest": "^29.2.3",
"ts-node": "^10.9.2",
"typescript": "^5.5.4",
"typescript-eslint": "^7.17.0"
},
"dependencies": {
"dotenv": "^16.4.5",
"knex": "^3.1.0",
"node-fetch": "^3.3.2",
"pg": "^8.12.0",
"pg-promise": "^11.9.1"
},
"overrides": {
"eslint": "^9.7.0"
}
}