-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
88 lines (88 loc) · 1.79 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
82
83
84
85
86
87
88
{
"name": "wordspaces",
"version": "0.0.0",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/efishery/wording.git"
},
"bugs": {
"url": "https://github.com/efishery/wording/issues"
},
"engines": {
"node": ">=14.0.0"
},
"workspaces": [
"tooling/**",
"packages/*",
"!tooling/config/*"
],
"scripts": {
"prepare": "husky install",
"build": "turbo run build",
"dev": "turbo run dev --parallel",
"lint": "turbo run lint",
"test": "turbo run test",
"format": "prettier --write --ignore-unknown",
"commit": "git-cz",
"release": "multi-semantic-release"
},
"config": {
"commitizen": {
"path": "@commitlint/prompt"
}
},
"prettier": {
"endOfLine": "auto",
"printWidth": 120,
"semi": true,
"singleQuote": true,
"trailingComma": "all"
},
"eslintConfig": {
"root": true,
"extends": [
"eword"
]
},
"commitlint": {
"extends": [
"eword"
]
},
"release": {
"extends": "msr-config-eword"
},
"lint-staged": {
"*": "prettier --ignore-unknown --write",
"*.js": [
"eslint --fix",
"cross-env NODE_ENV=test jest --bail --findRelatedTests --passWithNoTests"
]
},
"jest": {
"testMatch": [
"**/*.test.js"
],
"testPathIgnorePatterns": [
"/node_modules/"
]
},
"dependencies": {},
"packageManager": "yarn@1.22.19",
"devDependencies": {
"@commitlint/cli": "^17",
"@commitlint/prompt": "^17",
"commitizen": "^4.2.5",
"commitlint-config-eword": "*",
"cross-env": "^7",
"eslint-config-eword": "*",
"husky": "^8",
"jest": "^29",
"lint-staged": "^13",
"msr-config-eword": "*",
"multi-semantic-release": "^3",
"prettier": "^2",
"turbo": "^1"
}
}