-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.09 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
{
"name": "tsrt",
"version": "0.1.0",
"description": "Typescript Reusable Tools",
"keywords": [],
"author": "Danyil Moroz",
"license": "ISC",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"clean": ". ./scripts/clean.sh",
"lint": "eslint . --ext .ts",
"watch": "lerna run watch --parallel",
"build": "lerna run build && lerna link",
"test": "lerna run test",
"update": "lerna version --no-push",
"release": "npm run test && npm run build && lerna publish from-package --yes"
},
"engines": {
"node": ">=12.0.0",
"npm": ">=6.0.0"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "4.8.2",
"@typescript-eslint/parser": "4.8.2",
"eslint": "7.14.0",
"eslint-config-airbnb-base": "14.2.1",
"eslint-config-prettier": "6.15.0",
"eslint-import-resolver-typescript": "2.3.0",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-json": "2.1.2",
"eslint-plugin-prettier": "3.1.4",
"lerna": "^3.20.2",
"tslib": "^1.11.0",
"typescript": "^4.0.2",
"typescript-eslint": "0.0.1-alpha.0"
}
}