-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 981 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 981 Bytes
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
{
"name": "dc-couchbase-agent",
"version": "1.0.0",
"description": "",
"main": "src/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start:dev": "nodemon src/index.ts",
"build": "rimraf ./build && tsc",
"start": "npm run build && node build/index.js",
"typecheck": "tsc --noEmit",
"start-no-typecheck": "ts-node --transpileOnly ./src/index.ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/cors": "^2.8.13",
"@types/node": "^18.11.18",
"nodemon": "^2.0.20",
"pino-pretty": "^9.1.1",
"rimraf": "^4.1.2",
"ts-node": "^10.9.1",
"typescript": "^4.9.5"
},
"dependencies": {
"@fastify/cors": "^8.2.0",
"@hasura/dc-api-types": "^0.24.0",
"cors": "^2.8.5",
"couchbase": "^4.2.0",
"dotenv": "^16.0.3",
"fastify": "^4.12.0",
"fastify-metrics": "^10.0.2",
"fastify-plugin": "^4.5.0",
"prom-client": "^14.1.0"
}
}