-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
83 lines (83 loc) · 2.88 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "movie-magic",
"description": "Example app for the Code Shaper tutorial",
"version": "0.0.1",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/code-shaper/movie-magic"
},
"workspaces": [
"apps/*",
"packages/*",
"plugins/*"
],
"scripts": {
"build": "turbo run build",
"build-storybook": "turbo run build-storybook",
"ci-validate": "run-s _ci-validate:root _ci-validate:rest",
"clean": "run-s _clean:rest _clean:root",
"commit": "cz",
"dev": "turbo run dev --concurrency 100",
"e2e": "turbo run e2e",
"e2e:ui": "turbo run e2e:ui",
"fix": "run-s _fix:root _fix:rest",
"format": "run-s _format:root _format:rest",
"graph": "turbo run build --graph",
"lint": "run-s _lint:root _lint:rest",
"pkg-check": "manypkg check",
"pkg-fix": "manypkg fix",
"prepare": "husky install",
"storybook": "turbo run storybook",
"test": "turbo run test",
"_ci-validate:rest": "turbo run ci-validate",
"_ci-validate:root": "run-s _lint:root _format:root",
"_clean:rest": "turbo run clean",
"_clean:root": "rimraf node_modules",
"_fix:rest": "turbo run fix",
"_fix:root": "run-s _lint:root:fix _format:root:fix",
"_format:rest": "turbo run format",
"_format:root": "prettier --list-different '**/*.{js,jsx,ts,tsx,json,md}' '!apps/**/*.*' '!packages/**/*.*' '!plugins/**/*.*'",
"_format:root:fix": "npm run --silent _format:root -- --write",
"_lint:rest": "turbo run lint",
"_lint:root": "eslint '**/*.{js,jsx,ts,tsx}' --ignore-pattern '/apps/' --ignore-pattern '/packages/' --ignore-pattern '/plugins/'",
"_lint:root:fix": "npm run --silent _lint:root -- --fix"
},
"dependencies": {
"@code-shaper/commitlint-config": "^1.*",
"@code-shaper/eslint-config": "^2.*",
"@code-shaper/nextjs": "^1.*",
"@commitlint/cz-commitlint": "^19.4.0",
"@manypkg/cli": "^0.21.4",
"@movie-magic/instant-sites": "*",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"code-shaper": "^1.*",
"commitizen": "^4.3.0",
"commitlint": "^19.4.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jest": "^28.8.0",
"eslint-plugin-jest-dom": "^5.4.0",
"eslint-plugin-jsx-a11y": "^6.9.0",
"eslint-plugin-only-error": "^1.0.2",
"eslint-plugin-promise": "^7.1.0",
"eslint-plugin-react": "^7.35.0",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-regexp": "^2.6.0",
"eslint-plugin-tailwindcss": "^3.17.4",
"eslint-plugin-testing-library": "^6.3.0",
"husky": "^8.0.3",
"lint-staged": "^15.2.9",
"npm-run-all": "^4.1.5",
"prettier": "^3.3.3",
"rimraf": "^6.0.1",
"turbo": "^1.*"
},
"engines": {
"node": "^20.*",
"npm": "^10.*"
}
}