-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.48 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
{
"name": "users-api",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "turbo run build --parallel",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"start": "docker-compose up -d --remove-orphans && turbo run start --parallel --continue",
"dev": "docker-compose up -d --remove-orphans && turbo run dev --parallel",
"debug": "docker-compose up -d --remove-orphans && turbo run debug --parallel",
"prod": "turbo run prod --parallel --continue",
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix",
"test": "turbo run test --parallel",
"test:watch": "turbo run test:watch --parallel --continue",
"test:cov": "turbo run test:cov --parallel --continue",
"test:e2e": "turbo run test:e2e --parallel --continue",
"type-check": "turbo run type-check --parallel --continue",
"prepare": "husky install"
},
"keywords": [],
"author": "",
"license": "ISC",
"packageManager": "[email protected]",
"engines": {
"node": ">=16.14.2"
},
"workspaces": [
"apps/*",
"packages/*"
],
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.56.0",
"@typescript-eslint/parser": "^5.56.0",
"eslint": "^8.36.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.0",
"prettier": "^2.8.7",
"turbo": "^1.7.3"
}
}