-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.27 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
{
"name": "url-shortener",
"private": true,
"scripts": {
"build:clean": "turbo run build:clean",
"build": "turbo run build",
"build:dev": "tsc --build tsconfig.json",
"test:unit": "turbo run test:unit:run --concurrency 5",
"test:integration": "turbo run test:integration --concurrency 5",
"lint": "turbo run lint --concurrency 5",
"lint:fix": "turbo run lint:fix"
},
"dependencies": {
"@fastify/cors": "^8.4.0",
"@fastify/helmet": "^11.1.1",
"@fastify/swagger": "^8.12.0",
"@fastify/swagger-ui": "^1.10.1",
"tslib": "^2.6.2"
},
"devDependencies": {
"@types/node": "^20.8.9",
"@typescript-eslint/eslint-plugin": "^6.9.0",
"@typescript-eslint/parser": "^6.9.0",
"dotenv-cli": "^7.3.0",
"esbuild": "^0.19.5",
"eslint": "^8.52.0",
"eslint-config-prettier": "^9.0.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-prettier": "^5.0.1",
"prettier": "^3.0.3",
"rimraf": "^5.0.5",
"ts-node": "^10.9.1",
"turbo": "^1.10.16",
"typescript": "^5.2.2",
"vitest": "^0.34.6"
},
"volta": {
"node": "21.0.0",
"npm": "10.2.1"
},
"engines": {
"node": "=21.0.0",
"npm": "=10.2.1"
},
"workspaces": [
"apps/*"
]
}