-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.28 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
46
47
48
49
50
{
"name": "@unocha/hpc-api-core",
"version": "10.7.1",
"description": "Core libraries supporting HPC.Tools API Backend",
"license": "Apache-2.0",
"private": false,
"scripts": {
"check-types": "tsc --noEmit",
"prepare": "[ -d .git ] && git config blame.ignoreRevsFile .git-blame-ignore-revs; husky",
"reinstall": "rm -rf node_modules/ && yarn",
"lint-prettier": "prettier -c .",
"lint-eslint": "eslint --quiet .",
"lint": "yarn lint-prettier && yarn lint-eslint"
},
"engines": {
"node": ">=20.15.1",
"yarn": ">=1.22.22"
},
"dependencies": {
"@types/lodash": "^4.17.13",
"@types/node-fetch": "2.6.11",
"fp-ts": "^2.14.0",
"io-ts": "2.2.20",
"knex": "3.1.0",
"lodash": "^4.17.21",
"node-fetch": "2.7.0",
"pg": "^8.13.1",
"ts-node": "^10.9.2"
},
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/node": "^22.10.3",
"@types/pg": "^8.11.10",
"@unocha/hpc-repo-tools": "^5.5.0",
"eslint": "^9.16.0",
"husky": "^9.1.7",
"jest": "^29.7.0",
"lint-staged": "^15.3.0",
"prettier": "3.4.2",
"ts-jest": "^29.2.5",
"typescript": "^5.7.2"
},
"lint-staged": {
"*.{ts,js}": [
"prettier --check",
"eslint"
],
"*.{js,jsx,ts,tsx,md,json}": "prettier --check"
}
}