-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
70 lines (70 loc) · 1.92 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
{
"name": "svelte-monorepo-starter",
"version": "0.3.0",
"description": "Monorepo for developing Svelte-centric apps, components and libraries",
"author": "Barry Low <[email protected]>",
"license": "MIT",
"private": true,
"workspaces": {
"packages": [
"libs/*",
"apps/*"
],
"nohoist": [
"**/rollup-plugin-svelte",
"**/rollup-plugin-svelte/**"
]
},
"scripts": {
"build": "lerna run build",
"watch": "lerna run dev",
"clean": "lerna run clean",
"lint": "lerna run lint",
"lint:fix": "lerna run lint:fix",
"eslint": "lerna run eslint",
"eslint:fix": "lerna run eslint:fix",
"test": "lerna run test",
"monocheck": "manypkg check",
"monofix": "manypkg fix",
"check-packages": "yarn clean && yarn monocheck && yarn lint && yarn eslint",
"fix-packages": "yarn clean && yarn monofix && yarn lint:fix && yarn eslint:fix",
"commit": "git add . && git cz",
"release": "standard-version"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"husky": {
"hooks": {
"pre-commit": "yarn fix-packages",
"pre-push": "yarn fix-packages && yarn test",
"commit-msg": "commitlint -e --verbose $HUSKY_GIT_PARAMS"
}
},
"dependencies": {
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"@manypkg/cli": "^0.9.0",
"commitizen": "^4.0.3",
"cypress": "^4.0.1",
"cz-conventional-changelog": "^3.1.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-svelte3": "^2.7.3",
"husky": "^4.2.1",
"lerna": "^3.20.2",
"prettier": "^1.19.1",
"prettier-plugin-svelte": "^0.7.0",
"standard-version": "^8.0.1",
"svelte": "^3.18.2"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}