-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.36 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
{
"name": "@nextbjj/repo",
"version": "0.0.0",
"private": true,
"scripts": {
"build": "turbo run build",
"ci": "turbo run build && turbo run e2e:test lint",
"dev": "turbo run dev --parallel",
"dev:core": "turbo run dev --parallel --filter=api --filter=web",
"dev:packages": "turbo run dev --scope=@nextbjj/form",
"dev:storybook": "turbo run build && turbo dev --filter=@nextbjj/storybook --filter=@nextbjj/form --no-daemon",
"e2e": "turbo run build && turbo run e2e:test",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"lint": "turbo run lint",
"preinstall": "npx only-allow pnpm",
"prepare": "chmod +x ./node_modules/husky/lib/bin.js && husky install",
"start:web": "turbo run start --scope=@nextbjj/web",
"test:e2e": "turbo run build && turbo run e2e:test",
"test:storybook": "turbo run storybook --no-daemon",
"test:yarnhook": "yarnhook"
},
"dependencies": {
"@nextbjj/eslint-config-custom": "0.0.0",
"husky": "8.0.3",
"lint-staged": "13.1.0",
"prettier": "2.8.2",
"turbo": "1.6.3",
"yarnhook": "0.6.0"
},
"engines": {
"node": ">=14.0.0"
},
"lint-staged": {
"apps/**/*.{js,ts,jsx,tsx}": [
"eslint --fix"
],
"*.json": [
"prettier --write"
]
},
"packageManager": "[email protected]",
"workspaces": [
"apps/*",
"packages/*",
"services/*"
]
}