-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.44 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
{
"name": "@bifrost/root",
"description": "Start your project in the best conditions",
"private": true,
"version": "0.0.0",
"author": "theodo-group",
"license": "MIT",
"homepage": "https://theodo-group.github.io/bifrost/",
"bugs": "https://github.com/theodo-group/bifrost/issues",
"keywords": [
"Monorepo",
"Nest",
"Next",
"Typescript"
],
"workspaces": [
"packages/*",
"documentation"
],
"scripts": {
"build": "turbo build --filter=!documentation",
"build:documentation": "turbo build --filter=documentation",
"dev:documentation": "turbo dev --filter=documentation",
"lint:fix": "pnpm linter-base-config --fix",
"lint:fix:all": "turbo lint:fix",
"linter-base-config": "eslint --ext=js,ts",
"postinstall": "husky install && syncpack format",
"preinstall": "npx only-allow pnpm",
"test": "turbo test",
"test:circular": "turbo test:circular",
"test:lint": "turbo test:lint",
"test:type": "turbo test:type",
"test:unit": "turbo test:unit",
"version": "pnpm install"
},
"devDependencies": {
"@commitlint/cli": "17.7.2",
"@commitlint/config-conventional": "17.7.0",
"eslint-config-custom": "workspace:*",
"husky": "8.0.3",
"lint-staged": "13.3.0",
"lodash": "4.17.21",
"prettier": "3.1.1",
"syncpack": "8.2.4",
"turbo": "1.11.2",
"typescript": "5.3.3"
},
"engines": {
"node": "^20.10.0"
},
"packageManager": "pnpm@8.6.4"
}