-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (63 loc) · 1.6 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
{
"name": "@adso-ts/ts-monorepo-skeleton",
"version": "1.0.0",
"private": true,
"description": "Monorepo skeleton",
"repository": {
"type": "git",
"url": "[email protected]:adam-sokolowski/ts-monorepo-skeleton.git"
},
"workspaces": [
"packages/*"
],
"keywords": [
"ts",
"es6",
"commonjs"
],
"main": "./dist/index.js",
"module": "./dist/index.js",
"typings": "./dist/types/index.d.ts",
"files": [
"dist"
],
"scripts": {
"lerna:build": "lerna run build",
"lerna:publish": "lerna publish",
"lerna:version": "lerna version",
"package:clear": "rimraf packages/**/dist",
"package:rebuild": "yarn package:clear && yarn lerna:build",
"package:githooks:reset": "rm -rf ./.git/hooks/* && rm -rf node_modules/husky && yarn install --check-files",
"source:lint": "eslint '*/**/*.ts' --fix",
"source:test": "jest --verbose",
"source:test:watch": "jest --watchAll",
"source:coverage-badges": "coverage-badges --save=coverage-badges"
},
"husky": {
"hooks": {
"pre-commit": [
"yarn source:lint"
],
"pre-push": [
"yarn source:test"
]
}
},
"author": "Adam Sokołowski <[email protected]>",
"license": "MIT",
"devDependencies": {
"@types/jest": "~26.0.10",
"@typescript-eslint/eslint-plugin": "~3.10.0",
"@typescript-eslint/parser": "~3.10.0",
"eslint": "~7.7.0",
"husky": "~4.2.5",
"jest": "~26.4.0",
"ts-jest": "~26.3.0",
"tslib": "~2.0.0",
"typescript": "~4.0.0"
},
"dependencies": {
"@adso-ts/badges": "^1.1.4",
"lerna": "^3.22.1"
}
}