-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.75 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
{
"name": "birthday-email-service",
"version": "1.0.0",
"description": "This project was bootstrapped with Fastify-CLI.",
"app": "app.ts",
"directories": {
"test": "test"
},
"scripts": {
"test": "npm run build:ts && tsc -p test/tsconfig.json && tap --ts --timeout=600 \"test/**/*.test.ts\"",
"test:report": "npm run build:ts && tsc -p test/tsconfig.json && tap --ts --timeout=600 --coverage-report=lcov \"test/**/*.test.ts\"",
"start": "npm run build:ts && fastify start -l info dist/app.js",
"build:ts": "tsc",
"watch:ts": "tsc -w",
"dev": "npm run build:ts && concurrently -k -p \"[{name}]\" -n \"TypeScript,App\" -c \"yellow.bold,cyan.bold\" \"npm:watch:ts\" \"npm:dev:start\"",
"dev:start": "fastify start --ignore-watch=.ts$ -w -l info -P dist/app.js",
"postinstall": "npx prisma generate"
},
"keywords": [],
"author": "MAgungHKM",
"license": "ISC",
"dependencies": {
"@fastify/autoload": "^5.0.0",
"@fastify/sensible": "^5.0.0",
"@fastify/swagger": "^8.1.0",
"@fastify/swagger-ui": "^1.2.0",
"@prisma/client": "^4.6.1",
"axios": "^1.2.0",
"axios-retry": "^3.3.1",
"dotenv": "^16.0.3",
"fastify": "^4.0.0",
"fastify-cli": "^5.6.0",
"fastify-cron": "^1.3.1",
"fastify-plugin": "^4.0.0",
"fluent-json-schema": "^4.0.0",
"luxon": "^3.1.0",
"retry": "^0.13.1",
"tzdata": "^1.0.35"
},
"devDependencies": {
"@faker-js/faker": "^7.6.0",
"@types/luxon": "^3.1.0",
"@types/node": "^18.0.0",
"@types/retry": "^0.12.2",
"@types/tap": "^15.0.5",
"append-transform": "^2.0.0",
"concurrently": "^7.0.0",
"fastify-tsconfig": "^1.0.1",
"prisma": "^4.6.1",
"tap": "^16.1.0",
"ts-node": "^10.4.0",
"typescript": "^4.5.4"
}
}