-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.68 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
51
52
53
54
55
56
57
58
59
60
61
{
"name": "hpc-api",
"version": "4.7.1",
"description": "api for HPC applications",
"main": "src/server.ts",
"license": "MIT",
"private": false,
"scripts": {
"check-types": "tsc --noEmit",
"install-and-link": "sh ./bin/install.sh",
"reinstall": "rm -rf node_modules/ && yarn install-and-link dev",
"start": "pm2 start start.js --no-daemon",
"dev": "ts-node-dev --inspect=127.0.0.1:9339 --transpile-only --no-notify -- start.js",
"prepare": "[ -d .git ] && git config blame.ignoreRevsFile .git-blame-ignore-revs; husky",
"lint-prettier": "prettier -c .",
"lint-eslint": "eslint --quiet .",
"lint": "yarn lint-prettier && yarn lint-eslint"
},
"dependencies": {
"@unocha/hpc-api-core": "^10.1.1",
"apollo-server-hapi": "^3.13.0",
"bunyan": "^1.8.15",
"class-validator": "^0.14.1",
"graphql": "^15.9.0",
"knex": "3.1.0",
"pg": "^8.13.1",
"pm2": "^5.4.2",
"reflect-metadata": "^0.2.2",
"ts-node": "^10.9.2",
"type-graphql": "^1.1.1",
"typedi": "^0.10.0",
"typescript": "^5.5.4"
},
"devDependencies": {
"@hapi/hapi": "^20.3.0",
"@types/bunyan": "^1.8.11",
"@types/hapi__hapi": "^20.0.9",
"@types/jest": "^29.5.14",
"@types/node": "^22.9.0",
"@types/pg": "^8.11.10",
"@unocha/hpc-repo-tools": "^5.0.0",
"eslint": "9.9.1",
"husky": "^9.1.6",
"jest": "^29.7.0",
"lint-staged": "^15.2.10",
"prettier": "3.3.3",
"ts-jest": "^29.2.5",
"ts-node-dev": "^2.0.0"
},
"engines": {
"node": ">=20.15.1",
"yarn": ">=1.22.22"
},
"lint-staged": {
"*.{ts,js}": [
"prettier --check",
"eslint"
],
"*.{js,ts,md,json}": "prettier --check"
}
}