-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
43 lines (43 loc) · 1.31 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
{
"name": "root",
"version": "1.0.0",
"packageManager": "yarn@1.22.21",
"private": true,
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.6.1",
"@typescript-eslint/parser": "^4.6.1",
"eslint": "^7.12.1",
"eslint-config-typestrict": "^1.0.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-no-only-tests": "^2.4.0",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-simple-import-sort": "^5.0.3",
"eslint-plugin-sonarjs": "^0.5.0",
"eslint-plugin-unused-imports": "^1.0.0",
"lerna": "^6.5.1",
"npm-run-all": "^4.1.5",
"prettier": "^2.1.2",
"ts-node": "^10.7.0",
"tsc-watch": "^4.2.9",
"typescript": "^4.1.0",
"yalc": "^1.0.0-pre.48"
},
"scripts": {
"build": "tsc -b",
"watch": "tsc -b -w",
"watch:push": "tsc-watch -b --onCompilationComplete 'yarn yalc:push:all'",
"lint": "eslint packages --ext .ts",
"lint:fix": "eslint packages --ext .ts --fix",
"yalc:push:all": "lerna exec yalc push",
"test": "lerna run test",
"format": "prettier --check \"./**/*.{ts,tsx,js,jsx}\"",
"format:fix": "prettier --write \"./**/*.{ts,tsx,js,jsx}\"",
"lerna": "lerna",
"lerna:publish": "lerna publish",
"run:publish": "run-s build lerna:publish"
},
"workspaces": [
"packages/*"
],
"dependencies": {}
}