generated from Markkos89/turbo-monorepo-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.99 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
53
54
55
56
57
58
59
60
{
"private": true,
"name": "turbo-monorepo-template",
"version": "1.0.0",
"repository": {
"type": "git",
"url": "https://github.com/markkos89/turbo-monorepo-template.git"
},
"scripts": {
"clean": "turbo run clean --no-daemon",
"dev": "turbo run dev --no-daemon --concurrency=13",
"build": "turbo run build --no-daemon",
"check": "turbo run check --no-daemon",
"storybook:dev": "turbo run storybook:dev --no-daemon",
"storybook:build": "turbo run storybook:build --no-daemon",
"test:e2e": "turbo run test:e2e --concurrency=1 --no-daemon",
"test:unit": "turbo run test:unit --concurrency=1 --no-daemon",
"lint:prettier": "prettier --plugin-search-dir=. --check .",
"lint:eslint": "eslint --cache .",
"lint": "run-s lint:*",
"fix:eslint": "eslint --fix .",
"fix:prettier": "prettier --plugin-search-dir=. --write .",
"fix": "run-s fix:*",
"prepare": "husky install",
"analyze": "cross-env ANALYZE=true pnpm build"
},
"lint-staged": {
"*": "prettier --ignore-unknown --write",
"*.{js,jsx,ts,tsx}": "eslint --cache --fix"
},
"devDependencies": {
"@commitlint/cli": "17.6.7",
"@commitlint/config-conventional": "17.6.7",
"@playwright/test": "1.36.1",
"@storybook/blocks": "7.1.1",
"@storybook/jest": "0.1.0",
"@storybook/react": "7.1.1",
"@storybook/testing-library": "0.2.0",
"@testing-library/react": "14.0.0",
"@testing-library/user-event": "14.4.3",
"@types/jest": "29.5.3",
"@types/node": "18.17.0",
"@types/react": "18.2.16",
"@types/react-dom": "18.2.7",
"@types/testing-library__jest-dom": "5.14.9",
"cross-env": "^7.0.3",
"eslint": "8.45.0",
"eslint-config-custom": "workspace:*",
"husky": "8.0.3",
"jest": "29.6.1",
"lint-staged": "13.2.3",
"npm-run-all": "4.1.5",
"prettier": "3.0.0",
"prettier-plugin-tailwindcss": "0.4.1",
"storybook": "7.1.1",
"turbo": "1.10.11",
"typescript": "5.1.6"
},
"packageManager": "pnpm@8.6.10"
}