-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
56 lines (56 loc) · 1.3 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
{
"private": true,
"name": "root",
"workspaces": [
"packages/*",
"examples/*"
],
"scripts": {
"watch": "tsc -b packages --watch",
"compile": "tsc -b packages",
"clean": "tsc -b packages --clean",
"prepublishOnly": "run-s clean compile",
"lint-staged": "lint-staged",
"test": "jest"
},
"devDependencies": {
"@types/get-port": "4.2.0",
"@types/jest": "25.2.3",
"@types/node": "14.0.9",
"@typescript-eslint/eslint-plugin": "2.34.0",
"@typescript-eslint/parser": "2.34.0",
"babel-eslint": "10.1.0",
"eslint": "6.5.1",
"eslint-config-prettier": "6.11.0",
"eslint-formatter-pretty": "2.1.1",
"eslint-plugin-import": "2.20.2",
"eslint-plugin-import-helpers": "1.0.2",
"eslint-plugin-prettier": "3.1.3",
"get-port": "5.1.1",
"husky": "4.2.5",
"jest": "25.5.4",
"lerna": "3.22.0",
"lerna-changelog": "0.8.2",
"lint-staged": "10.2.7",
"npm-run-all": "4.1.5",
"prettier": "1.18.2",
"ts-jest": "25.5.1",
"typescript": "3.9.3",
"utility-types": "3.8.0"
},
"husky": {
"hooks": {
"pre-commit": "run-s lint-staged"
}
},
"lint-staged": {
"*.{js,ts}": [
"eslint --format=pretty --fix",
"git add"
],
"*.{json,md}": [
"prettier --write",
"git add"
]
}
}