-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
108 lines (108 loc) · 3.32 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "@alfalab/utils-root",
"version": "0.0.0",
"description": "",
"main": "index.js",
"private": "true",
"workspaces": [
"packages/*"
],
"scripts": {
"start": "start-storybook -p 9009",
"setup": "lerna bootstrap",
"build:storybook": "build-storybook",
"build": "lerna exec yarn build",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alfa-laboratory/utils.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/alfa-laboratory/utils/issues"
},
"homepage": "https://github.com/alfa-laboratory/utils#readme",
"devDependencies": {
"@babel/core": "^7.17.8",
"@rollup/plugin-commonjs": "^21.0.2",
"@rollup/plugin-node-resolve": "^13.1.3",
"@rollup/plugin-typescript": "^8.3.1",
"@storybook/addon-actions": "^6.4.19",
"@storybook/addon-docs": "^6.4.19",
"@storybook/addon-knobs": "^6.4.0",
"@storybook/addon-links": "^6.4.19",
"@storybook/react": "^6.4.19",
"@testing-library/dom": "^8.11.3",
"@testing-library/react": "^12.1.4",
"@testing-library/react-hooks": "^7.0.2",
"@testing-library/user-event": "^13.5.0",
"@types/jest": "^27.4.1",
"@typescript-eslint/eslint-plugin": "^5.15.0",
"@typescript-eslint/parser": "^5.15.0",
"arui-presets-lint": "5.10.0",
"babel-loader": "^8.2.3",
"eslint": "^8.11.0",
"eslint-config-airbnb-typescript": "^16.1.3",
"eslint-import-resolver-typescript": "^2.5.0",
"eslint-plugin-cypress": "2.12.1",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.29.4",
"eslint-plugin-react-hooks": "^4.3.0",
"husky": "^7.0.4",
"jest": "^27.5.1",
"lerna": "^4.0.0",
"lint-staged": "^12.3.7",
"module-alias": "^2.2.2",
"prettier": "^2.6.0",
"prettier-eslint": "^13.0.0",
"prettier-eslint-cli": "^5.0.1",
"react-test-renderer": "^17.0.2",
"rollup": "^2.70.1",
"rollup-plugin-auto-external": "^2.0.0",
"stylelint": "^14.6.0",
"ts-jest": "^27.1.3",
"typescript": "^4.6.2"
},
"dependencies": {},
"publishConfig": {
"registry": "https://registry.yarnpkg.com"
},
"eslintConfig": {
"extends": "./node_modules/arui-presets-lint/eslint/index.js",
"parserOptions": {
"project": "./tsconfig.json"
},
"rules": {
"import/no-extraneous-dependencies": "off"
}
},
"lint-staged": {
"src/**/*.{ts,tsx}": [
"prettier-eslint --write",
"eslint"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-push": "CI=true yarn test"
}
},
"prettier": "arui-presets-lint/prettier",
"commitlint": {
"extends": [
"./node_modules/arui-presets-lint/commitlint"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}