-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.62 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
{
"name": "@tutods/ignite-ui",
"license": "MIT",
"scripts": {
"prepare": "husky install",
"lint": "eslint ./ --ignore-path .gitignore",
"lint:fix": "eslint ./ --ignore-path .gitignore --fix",
"format": "prettier --write ./packages **/*.md **/*.json *.js *.mjs *.cjs",
"build": "turbo run build",
"dev": "turbo run dev --parallel",
"changeset": "changeset",
"version-packages": "changeset version",
"release": "turbo run build --filter=!@tutods-ignite-ui/docs && changeset publish"
},
"private": true,
"workspaces": [
"packages/*"
],
"engineStrict": true,
"engines": {
"node": ">=18.x.x",
"yarn": "please-use-npm",
"npm": ">=8.x.x"
},
"devDependencies": {
"@changesets/cli": "^2.26.2",
"@commitlint/cli": "^17.7.1",
"@commitlint/config-conventional": "^17.7.0",
"@tutods/eslint-config": "^1.13.0",
"@tutods/prettier-config": "^0.2.0",
"@typescript-eslint/eslint-plugin": "^6.4.0",
"@typescript-eslint/parser": "^6.4.0",
"eslint": "^8.47.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-simple-import-sort": "^10.0.0",
"eslint-plugin-unused-imports": "^3.0.0",
"husky": "^8.0.3",
"lint-staged": "^14.0.0",
"prettier": "^3.0.2",
"turbo": "^1.10.12"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"prettier --write",
"eslint --ignore-path .gitignore --fix"
],
"*.{md,mdx,json,html,css,scss,sass,less}": [
"prettier --write"
]
}
}