-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.74 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
{
"name": "nidalee-monorepo",
"version": "0.0.0",
"author": "Xiaofan Wu (https://github.com/xiaofan2406)",
"description": "Nidalee UI framework for React",
"keywords": [
"nidalee",
"react",
"UI"
],
"repository": "xiaofan2406/nidalee",
"bugs": {
"url": "https://github.com/xiaofan2406/nidalee/issues"
},
"license": "MIT",
"engines": {
"node": "^18.18.0",
"npm": "^9.5.1"
},
"workspaces": [
"packages/*"
],
"scripts": {
"prepare": "husky install",
"format": "prettier '**/*.{js,jsx,json,ts,tsx,md,mdx,css}' --write --ignore-path .gitignore",
"lint:eslint": "eslint '**/*.{ts,tsx,js,jsx}' --ignore-path .gitignore",
"lint:prettier": "prettier '**/*.{js,jsx,json,ts,tsx,md,mdx,css}' --check --ignore-path .gitignore",
"lint": "npm run lint:eslint && npm run lint:prettier",
"new": "node ./scripts/generator/main",
"test": "npm run test -w ./packages/nidalee",
"coverage": "npm run coverage -w ./packages/nidalee",
"clean": "turbo run clean --parallel",
"dev": "turbo run dev --parallel",
"build": "turbo run build",
"preview": "turbo run preview"
},
"lint-staged": {
"*.{js,jsx,json,ts,tsx,md,mdx,css}": [
"prettier --write"
]
},
"prettier": {
"singleQuote": true,
"trailingComma": "es5",
"bracketSpacing": false
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"devDependencies": {
"@commitlint/cli": "^17.7.2",
"@commitlint/config-conventional": "^17.7.0",
"eslint": "^8.51.0",
"eslint-config-free": "^1.5.10",
"husky": "^8.0.3",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"lint-staged": "^14.0.1",
"prettier": "^2.8.8",
"turbo": "^1.10.15"
}
}