-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.06 KB
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 1.06 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
{
"name": "g-actions",
"version": "1.0.0",
"description": "",
"scripts": {
"test": "vitest",
"dev": "nodemon --watch 'src/**/*.ts' --exec 'ts-node' src/index.ts",
"build": "tsc",
"start": "node ./build/index.js",
"lint": "eslint"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@eslint/css": "^0.6.0",
"@eslint/js": "^9.24.0",
"@eslint/json": "^0.11.0",
"@types/dotenv": "^6.1.1",
"@types/express": "^5.0.1",
"@types/node": "^22.14.0",
"@types/pg": "^8.11.11",
"@typescript-eslint/eslint-plugin": "^8.29.1",
"@typescript-eslint/parser": "^8.29.1",
"eslint": "^9.24.0",
"eslint-config-prettier": "^10.1.1",
"eslint-define-config": "^2.1.0",
"eslint-plugin-prettier": "^5.2.6",
"globals": "^16.0.0",
"nodemon": "^3.1.9",
"prettier": "^3.5.3",
"ts-node": "^10.9.2",
"typescript": "^5.8.3",
"typescript-eslint": "^8.29.1",
"vitest": "^3.1.1"
},
"dependencies": {
"dotenv": "^16.4.7",
"express": "^5.1.0",
"pg": "^8.14.1"
}
}