-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
67 lines (67 loc) · 1.75 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
{
"name": "@risedle/monorepo",
"private": true,
"scripts": {
"check": "turbo run check",
"lint": "turbo run lint",
"build": "turbo run build",
"test": "turbo run test",
"test:force": "turbo run test --no-cache",
"prepare": "husky install",
"postinstall": "pnpm prepare",
"packages:build": "turbo run build --filter=./packages/*",
"packages:version": "changeset version",
"packages:publish": "changeset publish",
"coverage:build": "node coverage/build.js"
},
"devDependencies": {
"@changesets/cli": "2.24.4",
"@commitlint/cli": "17.0.2",
"@commitlint/config-conventional": "17.0.2",
"@risedle/prettier-config": "0.1.0",
"fs-extra": "10.1.0",
"glob": "8.0.3",
"husky": "8.0.1",
"lint-staged": "13.0.1",
"mustache": "4.2.0",
"prettier": "2.7.1",
"turbo": "latest"
},
"engines": {
"pnpm": ">=7.0.0",
"node": ">=14.0.0"
},
"prettier": "@risedle/prettier-config",
"commitlint": {
"extends": [
"@commitlint/config-conventional"
],
"rules": {
"type-enum": [
2,
"always",
[
"chore",
"docs",
"feat",
"fix",
"refactor",
"bump"
]
]
}
},
"lint-staged": {
"*": "prettier --write --ignore-unknown"
},
"pnpm": {
"peerDependencyRules": {
"ignoreMissing": [
"*"
],
"allowedVersions": {
"react": "*"
}
}
}
}