This repository has been archived by the owner on Aug 14, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
84 lines (84 loc) · 1.73 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
74
75
76
77
78
79
80
81
82
83
84
{
"name": "reactorx",
"version": "0.0.0",
"private": true,
"workspaces": [
"@reactorx/*"
],
"scripts": {
"test": "jest --coverage",
"build": "lerna exec monobundle"
},
"dependencies": {
"@querycap-dev/dev-deps": "*",
"@querycap-dev/monobundle": "*",
"@testing-library/react": "10.0.1",
"@types/history": "4.7.5",
"@types/lodash": "4.14.149",
"@types/node": "13.9.1",
"@types/react": "16.9.23",
"@types/react-dom": "16.9.5",
"axios": "0.19.2",
"history": "4.10.1",
"lodash": "4.17.15",
"react": "16.13.x",
"react-dom": "16.13.x",
"redux-logger": "3.0.6"
},
"jest": {
"testEnvironment": "jsdom",
"transform": {
"^.+\\.[t|j]sx?$": "babel-jest"
},
"moduleNameMapper": {
"^@reactorx/([^/]+)$": "<rootDir>/@reactorx/$1/index.ts"
},
"moduleFileExtensions": [
"tsx",
"ts",
"json",
"jsx",
"js"
],
"modulePaths": [
"<rootDir>"
],
"testRegex": ".*/__tests__/.+\\.(generator|test|spec)\\.(ts|tsx)$"
},
"husky": {
"hooks": {
"post-merge": "yarn",
"pre-commit": "lint-staged && pretty-quick --staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint --quiet"
]
},
"prettier": {
"trailingComma": "all",
"arrowParens": "always",
"printWidth": 120,
"jsxBracketSameLine": true
},
"eslintConfig": {
"extends": [
"@querycap-dev/eslint-config"
],
"settings": {
"react": {
"version": "detect"
}
},
"rules": {
"@typescript-eslint/ban-ts-ignore": "off"
}
}
}