-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.65 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
{
"name": "@test/root",
"description": "Generate a Bifrost project",
"version": "1.0.0",
"license": "MIT",
"repository": "[email protected]:theodo-group/bifrost.git",
"scripts": {
"build": "turbo build",
"dev": "turbo dev --filter=./apps/*",
"lint": "turbo lint lint:style",
"lint:fix": "eslint --cache --ext=js,ts --fix",
"lint:fix:all": "turbo lint:fix lint:style:fix",
"postinstall": "(command -v husky && husky install && syncpack format) || echo 'husky is not installed, skipping'",
"preinstall": "npx only-allow pnpm",
"prepare": "(command -v husky && husky install ) || echo 'husky is not installed, skipping'",
"security": "audit-ci --config ./audit-ci.json",
"test": "turbo test",
"test:circular": "turbo test:circular",
"test:type": "turbo test:type",
"test:unit": "turbo test:unit"
},
"devDependencies": {
"@commitlint/cli": "17.6.6",
"@commitlint/config-conventional": "17.6.6",
"@typescript-eslint/eslint-plugin": "5.60.1",
"@typescript-eslint/parser": "5.60.1",
"audit-ci": "6.6.1",
"dependency-cruiser": "11.18.0",
"eslint": "8.43.0",
"eslint-config-prettier": "8.8.0",
"eslint-import-resolver-typescript": "3.5.5",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-prefer-arrow": "1.2.3",
"eslint-plugin-prettier": "4.2.1",
"husky": "8.0.3",
"lint-staged": "13.2.3",
"npm-audit-resolver": "3.0.0-7",
"prettier": "2.8.8",
"syncpack": "8.2.4",
"turbo": "1.10.6",
"typescript": "4.7.4"
},
"packageManager": "[email protected]",
"pnpm": {
"overrides": {
"@babel/core>json5": "2.2.2",
"adminjs>flat": "5.0.2"
}
}
}