-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 2 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "@pplancq/dev-tools",
"version": "0.0.0",
"private": true,
"license": "MIT",
"description": "Dev tools for React App",
"author": "Paul PLANCQ <paul.plancq@outlook.fr>",
"contributors": [
"Triki-Ahmed <ahmed.triki.1996@gmail.com>"
],
"repository": {
"type": "git",
"url": "https://github.com/pplancq/dev-tools"
},
"packageManager": "npm@11.11.1",
"scripts": {
"build": "npm run build --workspaces --if-present",
"test": "vitest run",
"test:watch": "vitest",
"lint": "node scripts/lint.mjs",
"lint:eslint": "npm run lint:eslint --workspaces --if-present",
"lint:eslint:fix": "npm run lint:eslint:fix --workspaces --if-present",
"lint:stylelint": "npm run lint:stylelint --workspaces --if-present",
"lint:stylelint:fix": "npm run lint:stylelint:fix --workspaces --if-present",
"lint:tsc": "npm run lint:tsc --workspaces --if-present",
"lint:prettier": "npm run lint:prettier --workspaces --if-present",
"lint:prettier:fix": "npm run lint:prettier:fix --workspaces --if-present",
"release": "multi-semantic-release",
"package:check": "node ./scripts/package-check.mjs",
"prepare": "husky"
},
"bugs": {
"url": "https://github.com/pplancq/dev-tools/issues"
},
"main": "index.js",
"keywords": [
"tools",
"react",
"template"
],
"workspaces": [
"packages/*"
],
"devDependencies": {
"@anolilab/multi-semantic-release": "^4.1.1",
"concurrently": "^9.2.1",
"husky": "^9.1.7",
"lint-staged": "^16.3.3",
"prettier": "^3.8.1",
"semantic-release": "^25.0.3"
},
"lint-staged": {
"(package|package-lock).json": "npm run package:check",
"*": "prettier --write --ignore-unknown"
},
"prettier": "@pplancq/prettier-config",
"release": {
"extends": [
"@pplancq/semantic-release-config"
],
"repositoryUrl": "https://github.com/pplancq/dev-tools"
},
"multi-release": {
"deps": {
"bump": "satisfy"
}
},
"engines": {
"node": ">= 20.12.2"
}
}