-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
65 lines (65 loc) · 1.85 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
62
63
64
65
{
"name": "igvf-catalog",
"version": "0.0.1",
"description": "IGVF Catalog API",
"main": "index.js",
"scripts": {
"dev:server": "tsx watch src/index",
"dev:client": "wait-port 2023 && tsx src/client",
"dev": "run-p dev:* --print-label",
"lint": "eslint --ext \".js,.ts\" --report-unused-disable-directives src",
"build": "tsc",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/IGVF-DACC/igvf-catalog.git"
},
"author": "Cherry Lab - Stanford University",
"license": "MIT",
"bugs": {
"url": "https://github.com/IGVF-DACC/igvf-catalog/issues"
},
"homepage": "https://github.com/IGVF-DACC/igvf-catalog#readme",
"dependencies": {
"@trpc/client": "^10.8.1",
"@trpc/server": "^10.8.1",
"@types/cors": "^2.8.13",
"@types/swagger-ui-express": "^4.1.3",
"arangojs": "^8.1.0",
"compression": "^1.7.4",
"cors": "^2.8.5",
"express": "^4.18.2",
"morgan": "^1.10.0",
"rotating-file-stream": "^3.2.3",
"swagger-ui-express": "^4.6.0",
"trpc-openapi": "^1.1.1",
"uuid": "^9.0.0",
"yaml": "^2.2.1",
"zod": "^3.20.2"
},
"devDependencies": {
"@babel/preset-env": "^7.20.2",
"@types/compression": "^1.7.2",
"@types/express": "^4.17.15",
"@types/jest": "^29.2.5",
"@types/mock-fs": "^4.13.1",
"@types/morgan": "^1.9.9",
"@types/node": "^18.11.18",
"@types/uuid": "^9.0.0",
"@typescript-eslint/eslint-plugin": "^5.48.1",
"eslint": "^8.31.0",
"eslint-config-standard-with-typescript": "^26.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.6.0",
"eslint-plugin-promise": "^6.1.1",
"jest": "^29.3.1",
"mock-fs": "^5.2.0",
"npm-run-all": "^4.1.5",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"tsx": "^3.12.2",
"typescript": "^4.9.4",
"wait-port": "^1.0.4"
}
}