-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathpackage.json
47 lines (47 loc) · 1.01 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
{
"name": "conduit",
"version": "0.16.12",
"description": "",
"main": "index.js",
"private": true,
"engines": {
"node": ">=20"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "yarn turbo run build",
"prepare": "husky",
"release": "standard-version"
},
"workspaces": [
"packages/*",
"libraries/*",
"admin/*",
"modules/*"
],
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.5.0",
"@commitlint/config-lerna-scopes": "^19.0.0",
"copyfiles": "^2.4.1",
"cz-conventional-changelog": "^3.3.0",
"husky": "^9.0.11",
"lerna": "^8.1.8",
"lint-staged": ">=15",
"prettier": "^3.0.3",
"standard-version": "^9.5.0",
"turbo": "^1.12.4"
},
"dependencies": {},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"lint-staged": {
"*.ts": "prettier --write"
}
}