-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 2.01 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
{
"name": "project-monorepo",
"private": true,
"version": "0.0.0",
"license": "MIT",
"description": "Project Monorepo",
"scripts": {
"prepare": "husky install && preconstruct dev",
"build": "tsc --noEmit && lerna run build && preconstruct build",
"watch": "lerna exec -- watch",
"test": "jest",
"test:cov": "jest --coverage --reporters=jest-junit",
"lint": "lerna run lint --parallel"
},
"dependencies": {
"@babel/core": "^7.16.0",
"@babel/preset-env": "^7.16.4",
"@babel/preset-typescript": "^7.16.0",
"@commitlint/cli": "^12.1.4",
"@commitlint/config-conventional": "^12.1.4",
"@commitlint/config-lerna-scopes": "^12.1.4",
"@manypkg/cli": "^0.19.1",
"@preconstruct/cli": "^2.1.5",
"@types/jest": "^27.0.3",
"@types/node": "^14.0.0",
"@typescript-eslint/eslint-plugin": "^4.28.2",
"@typescript-eslint/parser": "^4.28.2",
"babel-plugin-replace-ts-export-assignment": "^0.0.2",
"commitizen": "^4.2.4",
"conventional-changelog-cli": "^2.1.1",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^7.30.0",
"eslint-config-prettier": "^3.6.0",
"eslint-import-resolver-typescript": "^2.0.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-jest": "^23.11.0",
"eslint-plugin-prettier": "^3.1.3",
"husky": "^7.0.1",
"jest": "^27.0.0",
"jest-junit": "12.2.0",
"lerna": "^4.0.0",
"lint-staged": "^11.0.0",
"prettier": "^2.3.2",
"reflect-metadata": "^0.1.13",
"rimraf": "^3.0.2",
"ts-jest": "^27.1.1",
"ts-loader": "^6.2.2",
"ts-node": "^10.4.0",
"tsconfig-paths": "^3.9.0",
"tslint": "^5.20.1",
"tslint-config-airbnb": "^5.11.2",
"typescript": "^3.9.7"
},
"lint-staged": {
"*.ts": [
"eslint --ext .ts --fix"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"workspaces": [
"packages/*"
],
"preconstruct": {
"packages": [
"packages/*",
"!packages/native-ts-package"
]
}
}