-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
82 lines (82 loc) · 2.25 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
{
"name": "@tsedio/root",
"version": "1.0.13",
"description": "",
"author": "Romain Lenzotti",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/tsedio/tsed-modules-template.git"
},
"bugs": {
"url": "https://github.com/tsedio/tsed-modules-template/issues"
},
"homepage": "https://github.com/tsedio/tsed-modules-template",
"scripts": {
"configure": "monorepo ci configure",
"clean": "monorepo clean workspace",
"test": "yarn clean && yarn test:lint && yarn test:coverage",
"test:unit": "lerna run test:unit",
"test:coverage": "lerna run test:coverage",
"test:lint": "eslint packages --ext .ts",
"test:lint:fix": "eslint packages --ext .ts --fix",
"test:e2e": "lerna run test:e2e",
"build": "monorepo build",
"publish": "monorepo publish --dry-run",
"prettier": "prettier '{packages,test}/**/*.ts' --write",
"release": "semantic-release",
"release:dryRun": "semantic-release --dry-run"
},
"dependencies": {
"lerna": "4.0.0"
},
"devDependencies": {
"@tsed/monorepo-utils": "1.17.6",
"@types/chai": "4.2.12",
"@types/chai-as-promised": "7.1.3",
"@types/jest": "26.0.20",
"@types/node": "14.14.34",
"@types/superagent": "4.1.10",
"@types/supertest": "2.0.10",
"@typescript-eslint/eslint-plugin": "4.17.0",
"@typescript-eslint/parser": "4.17.0",
"concurrently": "5.3.0",
"cross-env": "7.0.2",
"eslint": "^7.10.0",
"eslint-config-prettier": "6.12.0",
"eslint-plugin-jest": "24.2.1",
"eslint-plugin-prettier": "3.3.1",
"husky": "5.1.3",
"jest": "26.6.3",
"lint-staged": "10.5.4",
"prettier": "2.2.1",
"semantic-release": "17.4.2",
"ts-jest": "26.5.3",
"supertest": "6.0.0",
"ts-node": "9.1.1",
"tsconfig-paths": "3.9.0",
"tslib": "2.2.0",
"typescript": "4.2.4"
},
"workspaces": {
"packages": [
"packages/*"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"post-commit": "git update-index --again"
}
},
"publishConfig": {
"registry": "https://npm.pkg.github.com"
},
"monorepo": {
"productionBranch": "production",
"developBranch": "production",
"registries": [
"https://registry.npmjs.org/"
]
}
}