-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.62 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.62 KB
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": "monorepo-playground",
"version": "1.0.0",
"type": "module",
"private": true,
"scripts": {
"build": "turbo build",
"start": "turbo start",
"lint": "turbo lint",
"examples": "turbo build --filter=@monorepo-playground/design-system && turbo dev --filter=examples",
"design-system": "turbo storybook --filter=@monorepo-playground/design-system",
"test-staged": "lint-staged && turbo check-types",
"test-all": "turbo check-types && turbo lint",
"format": "prettier --write .",
"format:check": "prettier --check .",
"stylelint": "stylelint \"**/*.scss\"",
"stylelint:fix": "stylelint \"**/*.scss\" --fix",
"prepare": "husky"
},
"lint-staged": {
"*.{ts,tsx,js,mjs,mts,json,css,scss,md}": "prettier --write",
"**/*.scss": "stylelint --fix",
"apps/examples/**/*.{ts,tsx}": "eslint --fix --config apps/examples/eslint.config.mjs",
"packages/design-system/**/*.{ts,tsx}": "eslint --fix --config packages/design-system/eslint.config.js",
"packages/recruitment/**/*.{ts,tsx}": "eslint --fix --config packages/recruitment/eslint.config.js"
},
"repository": {
"type": "git",
"url": "https://github.com/developer-choi/react-playground"
},
"workspaces": [
"apps/*",
"packages/*"
],
"packageManager": "npm@11.6.2",
"devDependencies": {
"@commitlint/cli": "^20.5.0",
"@commitlint/config-conventional": "^20.5.0",
"husky": "^9.1.7",
"lint-staged": "^16.4.0",
"prettier": "^3.8.2",
"stylelint": "^17.6.0",
"stylelint-config-standard-scss": "^17.0.0",
"stylelint-declaration-strict-value": "^1.11.1",
"turbo": "^2.7.3"
}
}