forked from joe-bell/plaiceholder
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
81 lines (81 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"private": true,
"name": "root",
"scripts": {
"build": "lerna run build",
"clean": "lerna run clean",
"commit": "git-cz",
"lint": "yarn lint:ts && yarn lint:pkg",
"lint:pkg": "syncpack list-mismatches",
"lint:ts": "lerna exec --parallel --stream --ignore='example-with-11ty' -- tsc --noEmit",
"prepare": "lerna run build --scope='plaiceholder' --scope='@plaiceholder/*'"
},
"devDependencies": {
"@commitlint/cli": "13.1.0",
"@commitlint/config-conventional": "13.1.0",
"@types/node": "14.17.15",
"@types/react": "17.0.20",
"@types/sharp": "0.29.1",
"commitizen": "4.2.4",
"cz-conventional-changelog": "3.3.0",
"husky": "4.3.8",
"lerna": "4.0.0",
"lint-staged": "11.1.2",
"microbundle": "0.13.0",
"prettier": "2.4.0",
"rimraf": "3.0.2",
"sharp": "0.29.1",
"syncpack": "5.8.15",
"typescript": "4.4.3"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged"
}
},
"syncpack": {
"peer": false,
"sortFirst": [
"private",
"name",
"version",
"description",
"author",
"license",
"funding",
"repository",
"bugs",
"homepage",
"keywords",
"source",
"main",
"module",
"exports",
"typings",
"typesVersions",
"files",
"scripts",
"browserslist",
"peerDependencies",
"dependencies",
"devDependencies"
]
},
"workspaces": [
"docs",
"examples/*",
"packages/*",
"plugins/*"
]
}