-
-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
37 lines (37 loc) · 1005 Bytes
/
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
{
"name": "acikkuran-api",
"version": "1.0.0",
"description": "acikkuran api with fastify.",
"author": "ugur sozen <sozenugur@gmail.com> (https://x.com/ziegfiroyt)",
"license": "CC-BY-NC-SA-4.0",
"main": "index.js",
"scripts": {
"build:digitalocean": "npm install --production=false && npm ci",
"start": "node index.js",
"dev": "nodemon index.js",
"test:watch": "ENVIRONMENT=test tap repl w test/*.spec.js",
"test": "ENVIRONMENT=test tap test/*.spec.js"
},
"dependencies": {
"@fastify/caching": "^8.3.0",
"@fastify/cors": "^9.0.1",
"@fastify/postgres": "^5.2.0",
"@fastify/redis": "^6.1.1",
"abstract-cache": "^1.0.1",
"abstract-cache-redis": "^2.0.0",
"dotenv": "^16.4.1",
"fastify": "^4.26.1",
"ioredis": "^5.3.2",
"meilisearch": "^0.37.0",
"pg": "^8.11.3"
},
"devDependencies": {
"nodemon": "^3.0.1",
"prettier": "3.2.5",
"tap": "^18.7.0"
},
"engines": {
"node": "18.x",
"npm": "~9.8.1"
}
}