-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
81 lines (81 loc) · 2 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
{
"name": "project-root",
"private": true,
"description": "Mono-repository root",
"license": "MIT",
"author": "alabs.team <[email protected]>",
"workspaces": [
"packages/*"
],
"scripts": {
"compile": "NODE_ENV=production yarn rollup -c",
"postinstall": "yarn husky install",
"lint": "yarn eslint packages",
"lint:files": "yarn eslint --no-ignore --cache --max-warnings 0",
"start": "NODE_ENV=development yarn rollup -cw",
"test": "yarn jest"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional",
"@commitlint/config-lerna-scopes"
]
},
"lint-staged": {
"packages/**/*.[jt]s?(x)": [
"yarn lint:files"
]
},
"eslintConfig": {
"extends": [
"@azimutlabs"
]
},
"eslintIgnore": [
".pnp.js",
".yarn",
"**/lib"
],
"jest": {
"globals": {
"ts-jest": {
"tsconfig": "tsconfig.test.json"
}
},
"preset": "ts-jest"
},
"devDependencies": {
"@azimutlabs/eslint-config": "^1.1.2",
"@azimutlabs/rollup": "^1.0.1",
"@babel/core": "^7.16.0",
"@commitlint/cli": "^15.0.0",
"@commitlint/config-conventional": "^15.0.0",
"@commitlint/config-lerna-scopes": "^15.0.0",
"@types/jest": "^27.0.2",
"@typescript-eslint/eslint-plugin": "^5.4.0",
"@typescript-eslint/parser": "^5.4.0",
"eslint": "^7.32.0",
"eslint-plugin-functional": "^3.7.2",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jest": "^25.2.4",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.27.0",
"eslint-plugin-react-hooks": "^4.3.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"husky": "^7.0.4",
"jest": "^27.3.1",
"jest-junit": "^13.0.0",
"lerna": "^4.0.0",
"lint-staged": "^12.0.2",
"prettier": "^2.4.1",
"react": "^17.0.2",
"rollup": "^2.60.0",
"ts-jest": "^27.0.7",
"typescript": "4.4.4"
},
"engines": {
"node": "=14"
},
"packageManager": "[email protected]"
}