-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
116 lines (116 loc) · 3.6 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
109
110
111
112
113
114
115
116
{
"name": "@ichef/gypcrete-build",
"version": "7.1.0",
"description": "iCHEF web components library, built with React.",
"private": true,
"homepage": "https://ichef.github.io/gypcrete",
"repository": "iCHEF/gypcrete",
"license": "Apache-2.0",
"engines": {
"node": ">= 20",
"npm": ">= 5.10.0",
"yarn": ">= 1.10.0"
},
"workspaces": [
"packages/*"
],
"scripts": {
"prepublish": "lerna run prepublish",
"start": "lerna run storybook --stream",
"bumpversion": "lerna version --no-git-tag-version --no-push",
"release": "lerna publish from-package",
"release:pre": "lerna publish --dist-tag=prerelease",
"release:canary": "lerna publish --canary minor --force-publish --exact",
"ghpages": "lerna run ghpages",
"lint": "npm run lint:eslint && npm run lint:stylelint",
"lint:eslint": "eslint ./packages --ignore-path=configs/.eslintignore ./",
"lint:stylelint": "stylelint ./packages/**/*.scss",
"test": "jest ./packages --config=configs/jest.config.json --coverage",
"test:watch": "jest --config=configs/jest.config.json --runInBand --watch --verbose",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s"
},
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.4",
"@babel/plugin-proposal-class-properties": "^7.4.4",
"@babel/plugin-transform-runtime": "^7.4.4",
"@babel/preset-env": "^7.4.4",
"@babel/preset-react": "^7.23.3",
"@babel/runtime": "^7.4.4",
"@babel/runtime-corejs3": "^7.4.4",
"@cfaester/enzyme-adapter-react-18": "^0.7.1",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.4.0",
"@testing-library/react-hooks": "^7.0.2",
"@testing-library/user-event": "^13.5.0",
"autoprefixer": "^9.6.1",
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^26.1.0",
"babel-loader": "^8.0.4",
"babel-plugin-module-resolver": "^3.1.1",
"babel-plugin-strip-css-imports": "zhusee2/babel-plugin-strip-css-imports",
"conventional-changelog-cli": "^2.1.1",
"core-js": "^3.1.1",
"coveralls": "^3.0.0",
"css-loader": "^6.8.1",
"enzyme": "^3.11.0",
"eslint": "7.8",
"eslint-config-airbnb": "18.2",
"eslint-config-ichef": "8.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-babel-module": "^5.0.0-beta.1",
"eslint-plugin-babel": "5.3",
"eslint-plugin-filenames": "1.3",
"eslint-plugin-import": "2.22",
"eslint-plugin-jsx-a11y": "6.3",
"eslint-plugin-react": "7.20",
"eslint-plugin-react-hooks": "4.1",
"eslint-plugin-unicorn": "21.0",
"husky": "^3.0.0",
"jest": "^26.1.0",
"lerna": "^3.22.1",
"lint-staged": "^9.2.0",
"mini-css-extract-plugin": "^2.7.6",
"postcss-loader": "^7.3.3",
"prettier": "3.1.1",
"prop-types": "^15.6.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-test-renderer": "^18.2.0",
"sass": "^1.69.5",
"sass-loader": "^13.3.2",
"style-loader": "^3.3.3",
"stylelint": "^10.1.0",
"stylelint-config-standard": "^16.0.0",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4"
},
"eslintConfig": {
"root": true,
"extends": "./configs/.eslintrc.yml"
},
"stylelint": {
"extends": "./configs/.stylelintrc.yml"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"lint-staged": {
"*.{yml,json,md}": [
"prettier --write",
"git add"
],
"*.{js,jsx}": [
"prettier --write",
"eslint --quiet",
"stylelint",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}