-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.04 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
{
"name": "@evalumate/root",
"version": "0.1.0",
"private": true,
"scripts": {
"postinstall": "lerna bootstrap",
"test": "lerna run test",
"tsc": "lerna run tsc"
},
"devDependencies": {
"eslint": "7.3.0",
"eslint-plugin-jest": "23.16.0",
"husky": "^4.2.5",
"import-sort-style-module": "^6.0.0",
"lerna": "^3.22.1",
"lint-staged": "^10.2.11",
"prettier": "^2.0.5",
"prettier-plugin-import-sort": "^0.0.4"
},
"prettier": {
"trailingComma": "es5",
"tabWidth": 2,
"printWidth": 100,
"semi": true
},
"importSort": {
".ts, .tsx": {
"style": "module",
"parser": "typescript"
}
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"**/*.ts(x)": "prettier --write"
},
"eslintConfig": {
"root": true,
"parserOptions": {
"ecmaVersion": 2019
},
"env": {
"es6": true
},
"extends": [
"plugin:jest/recommended",
"plugin:jest/style"
],
"plugins": [
"jest"
]
}
}