-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
56 lines (56 loc) · 1.57 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
{
"name": "monorepo-peoject",
"private": true,
"scripts": {
"build": "turbo build",
"dev": "dotenv -e .env -e .env.development -- turbo dev",
"lint": "turbo lint",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"lint:eslint": "eslint . --fix",
"prepare": "husky install",
"lint:lint-staged": "lint-staged",
"commit": "git add -A && git pull && git-cz && git push",
"test": "vitest"
},
"devDependencies": {
"@commitlint/cli": "^18.5.0",
"@commitlint/config-conventional": "^18.5.0",
"@turbo/gen": "^1.11.3",
"@types/node": "^18.15.11",
"@typescript-eslint/eslint-plugin": "^6.17.0",
"@typescript-eslint/parser": "^6.17.0",
"autoprefixer": "^10.4.19",
"commitizen": "^4.3.0",
"cz-git": "^1.9.3",
"dotenv-cli": "^7.3.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.34.3",
"eslint-plugin-react-hooks": "^4.6.2",
"husky": "^9.0.11",
"jsdom": "^25.0.1",
"lint-staged": "^15.2.7",
"postcss": "^8.4.39",
"postcss-html": "^1.7.0",
"postcss-less": "^6.0.0",
"postcss-preset-env": "^9.5.14",
"prettier": "^3.3.2",
"stylelint": "^16.6.1",
"stylelint-config-recess-order": "^5.0.1",
"stylelint-config-standard": "^36.0.1",
"stylelint-prettier": "^5.0.0",
"turbo": "latest",
"typescript": "^5.5.2",
"vitest": "^2.1.3"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=18"
},
"config": {
"commitizen": {
"path": "node_modules/cz-git"
}
}
}