-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
108 lines (108 loc) · 2.8 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"private": true,
"name": "strapi-molecules",
"version": "0.0.1",
"description": "Set of molecules which speed up Strapi development.",
"scripts": {
"bootstrap": "yarn install --frozen-lockfile && lerna bootstrap",
"test": "lerna run --parallel test",
"test:unit": "jest --coverage",
"clean": "lerna run --parallel clean && rimraf coverage dist",
"clean-all": "lerna run --parallel clean-all && rimraf coverage node_modules",
"build": "lerna run --parallel build",
"extract-dist-to-root": "lerna run --parallel extract-dist-to-root",
"clean-dist-from-root": "lerna run --parallel clean-dist-from-root",
"lint-branch-commit-msg": "commitlint --from=$(git merge-base master $(git rev-parse --abbrev-ref HEAD)) --to=HEAD",
"run-lint-staged": "lint-staged",
"version-and-publish": "lerna publish",
"on-pre-commit": "yarn run-lint-staged",
"on-pre-push": "yarn lint-branch-commit-msg",
"watch": "lerna run --stream watch --no-private"
},
"dependencies": {
"@types/bookshelf": "^1.1.1",
"@types/koa": "^2.11.4",
"@types/koa-bodyparser": "^4.3.0",
"@types/pluralize": "^0.0.29",
"knex": "0.20.13",
"koa": "^2.13.0"
},
"devDependencies": {
"@commitlint/cli": "^9.1.1",
"@commitlint/config-conventional": "^9.1.1",
"@types/fs-extra": "^9.0.1",
"@types/jest": "^26.0.9",
"@types/node": "12.12.54",
"codecov": "^3.7.2",
"commitizen": "^4.1.2",
"cz-conventional-changelog": "^3.2.0",
"fs-extra": "^9.0.1",
"husky": "^4.2.5",
"jest": "^26.4.0",
"jest-cli": "^26.4.0",
"lerna": "^3.20.2",
"lint-staged": "^10.2.11",
"prettier": "^2.0.5",
"rimraf": "^3.0.2",
"ts-jest": "^26.2.0",
"ts-node": "^8.10.2",
"typescript": "^3.9.7"
},
"husky": {
"hooks": {
"pre-commit": "yarn on-pre-commit",
"pre-push": "yarn on-pre-push"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"jest --bail --findRelatedTests",
"prettier --write"
],
"*.{md,css,scss}": [
"prettier --write"
]
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
],
"rules": {
"header-max-length": [
2,
"always",
200
]
}
},
"author": {
"name": "VirtusLab",
"email": "[email protected]",
"url": "https://virtuslab.com"
},
"maintainers": [
{
"name": "VirtusLab",
"email": "[email protected]",
"url": "https://virtuslab.com"
}
],
"repository": {
"type": "git",
"url": "git://https://github.com/VirtusLab/strapi-molecules.git"
},
"workspaces": [
"packages/*",
"examples/*"
],
"engines": {
"node": ">=10.16.0",
"npm": ">=6.0.0"
},
"license": "MIT"
}