-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.91 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
62
63
64
65
{
"name": "api-deploy",
"version": "1.0.0",
"description": "",
"main": "dist/index.js",
"engines": {
"node": ">=16.15"
},
"scripts": {
"start:dev": "tsx watch src",
"start:build": "rimraf build && tsx esbuild.ts",
"start:prod": "npm run start:build && node dist",
"start:db": "docker run --rm -d -p 27017:27017 --name fastify-mongo mongo:4",
"stop:db": "docker stop fastify-mongo",
"lint:format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
"lint:fix": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix",
"test": "vitest",
"test:ui": "vitest --ui",
"test:coverage": "vitest run --coverage"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@fastify/autoload": "^5.5.0",
"@fastify/jwt": "^6.4.0",
"@fastify/sensible": "^5.1.1",
"bcryptjs": "^2.4.3",
"fastify": "^4.10.0",
"fastify-plugin": "^4.3.0",
"mongoose": "^6.7.4"
},
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "^3.4.0",
"@types/bcryptjs": "^2.4.2",
"@types/node": "^18.11.9",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.44.0",
"@vitest/coverage-c8": "^0.25.3",
"@vitest/ui": "^0.25.3",
"dotenv": "^16.0.3",
"env-schema": "5.1.0",
"esbuild": "^0.15.14",
"eslint": "^8.0.1",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard-with-typescript": "^23.0.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-n": "^15.0.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.0.0",
"fluent-json-schema": "^4.0.0",
"graphql": "^16.6.0",
"graphql-relay": "^0.10.0",
"json-schema-to-ts": "^2.6.2",
"pino": "^8.7.0",
"pino-pretty": "^9.1.1",
"prettier": "^2.8.0",
"rimraf": "^3.0.2",
"tiny-glob": "^0.2.9",
"tsx": "^3.12.2",
"typescript": "*",
"vitest": "^0.25.3",
"zod": "^3.20.2"
}
}