-
Notifications
You must be signed in to change notification settings - Fork 26
/
package.json
61 lines (61 loc) · 1.62 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": "deprem-io-backend",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"setup": "npm ci && allow-scripts",
"start": "node index.js",
"dev": "npx nodemon --exec \"node index.js\"",
"test": "vitest run --coverage",
"test:watch": "vitest",
"lint": "rome check --apply-suggested .",
"format": "rome format --write .",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/acikkaynak/deprem-io-backend.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/acikkaynak/deprem-io-backend/issues"
},
"homepage": "https://github.com/acikkaynak/deprem-io-backend#readme",
"dependencies": {
"@fastify/autoload": "^5.7.1",
"@fastify/caching": "^8.2.0",
"@fastify/cors": "^8.2.0",
"@fastify/redis": "^6.1.0",
"@fastify/sensible": "^5.2.0",
"@fastify/swagger": "^8.3.1",
"@fastify/swagger-ui": "^1.3.0",
"@lavamoat/allow-scripts": "^2.3.0",
"@lavamoat/preinstall-always-fail": "^1.0.0",
"abstract-cache-redis": "^2.0.0",
"axios": "^1.3.3",
"dotenv": "^16.0.3",
"fastify": "^4.13.0",
"ioredis": "^5.3.0",
"mongoose": "^6.9.1",
"node-cron": "^3.0.2",
"nodemailer": "^6.9.1",
"pino-pretty": "^9.2.0",
"xss": "^1.0.14"
},
"devDependencies": {
"@vitest/coverage-c8": "^0.28.4",
"husky": "^8.0.3",
"nodemon": "^2.0.20",
"rome": "^11.0.0",
"vitest": "^0.28.4"
},
"lavamoat": {
"allowScripts": {
"@lavamoat/preinstall-always-fail": false,
"rome": true,
"vitest>vite>esbuild": true
}
}
}