-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.01 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
{
"name": "product-update",
"version": "1.0.0",
"description": "",
"main": "dist/index.js",
"scripts": {
"test": "jest",
"build": "tsc",
"typecheck": "tsc --noEmit",
"start": "node -r @swc/register ./src/index.ts",
"lint": "eslint '*/**/*.{js,ts}' --quiet --fix"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@swc/core": "^1.3.83",
"@swc/jest": "^0.2.29",
"@swc/register": "^0.1.10",
"@tsconfig/node20": "^20.1.2",
"@types/jest": "^29.5.4",
"@types/lodash": "^4.14.198",
"@types/pg": "^8.10.2",
"@typescript-eslint/eslint-plugin": "^6.6.0",
"@typescript-eslint/parser": "^6.6.0",
"eslint": "^8.49.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-jest": "^27.2.3",
"eslint-plugin-prettier": "^5.0.0",
"jest": "^29.6.4",
"prettier": "^3.0.3",
"testdouble": "^3.18.0",
"ts-jest": "^29.1.1",
"typescript": "^5.2.2"
},
"dependencies": {
"lodash": "^4.17.21",
"pg": "^8.11.3"
}
}