-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathpackage.json
46 lines (46 loc) · 1.24 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
{
"name": "@usecannon/api",
"version": "1.0.0",
"description": "Public Facing API for querying package data",
"main": "dist/src/index.js",
"private": true,
"scripts": {
"db-prepare": "cp ../indexer/src/db.ts ./src/db/keys.ts",
"build": "tsc -p tsconfig.json",
"clean": "rm -rf ./dist",
"start": "node dist/src/index.js",
"dev": "NODE_ENV=development ts-node-dev src/index.ts"
},
"author": "",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/usecannon/cannon.git",
"directory": "packages/api"
},
"dependencies": {
"@isaacs/ttlcache": "^1.4.1",
"@usecannon/builder": "workspace:*",
"@usecannon/cli": "workspace:*",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"envalid": "^8.0.0",
"express": "5.0.0-beta.3",
"express-basic-auth": "^1.2.1",
"express-prom-bundle": "^7.0.0",
"express-rate-limit": "^7.2.0",
"fastest-levenshtein": "^1.0.16",
"fuse.js": "^7.0.0",
"helmet": "^7.1.0",
"prom-client": "^15.1.2",
"redis": "^4.6.13",
"viem": "^2.23.1"
},
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/node": "^20.12.7",
"ts-node-dev": "^2.0.0",
"typescript": "^5.4.5"
}
}