-
Notifications
You must be signed in to change notification settings - Fork 35
/
package.json
54 lines (54 loc) · 1.17 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
{
"name": "lockfile-lint",
"version": "0.0.0",
"private": true,
"author": {
"name": "Liran Tal",
"email": "liran.tal@gmail.com",
"url": "https://github.com/lirantal"
},
"scripts": {
"lint": "npx turbo lint",
"test": "npx turbo test",
"version": "changeset version",
"release": "changeset publish",
"prepare": "husky install"
},
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/lirantal/lockfile-lint.git"
},
"workspaces": [
"packages/*"
],
"devDependencies": {
"@commitlint/cli": "17.6.7",
"@commitlint/config-conventional": "17.6.7",
"commitizen": "4.3.0",
"cz-conventional-changelog": "3.3.0",
"husky": "^8.0.3",
"lint-staged": "^13.2.3",
"node-notifier": "^10.0.1"
},
"lint-staged": {
"**/*.js": [
"prettier-standard"
]
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"dependencies": {
"@changesets/changelog-github": "^0.4.8",
"@changesets/cli": "^2.27.5",
"turbo": "^1.10.12"
}
}