forked from alfa-laboratory/core-components
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
105 lines (105 loc) · 3.06 KB
/
package.json
File metadata and controls
105 lines (105 loc) · 3.06 KB
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
{
"name": "@alfalab/core-components",
"version": "0.0.2",
"license": "ISC",
"repository": {
"type": "git",
"url": "git+https://github.com/FenkoAlex/core-components.git"
},
"bugs": {
"url": "https://github.com/alfa-laboratory/core-components/issues"
},
"homepage": "https://github.com/alfa-laboratory/core-components#readme",
"scripts": {
"build": "./bin/build.sh",
"start": "start-storybook -p 9009 -c .storybook",
"storybook:build-demo": "node ./bin/demo-build.js",
"update-colors": "node ./tools/update-colors.js",
"pub": "./bin/publish.sh",
"lint": "yarn lint:css && yarn lint:js",
"lint:css": "stylelint ./packages/**/*.css",
"lint:js": "eslint ./ --ext .ts,.tsx,.js,.jsx"
},
"browserslist": {
"production": [
"last 2 versions",
"ie >= 11",
"Android >= 4",
"iOS >= 9"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"dependencies": {
"@storybook/preset-create-react-app": "^1.5.2",
"@types/jest": "^25.1.2",
"classnames": "^2.2.6"
},
"devDependencies": {
"@babel/cli": "^7.8.3",
"@babel/core": "^7.8.3",
"@babel/preset-react": "^7.8.3",
"@babel/preset-typescript": "^7.8.3",
"@storybook/addon-actions": "^5.3.8",
"@storybook/addon-knobs": "^5.3.8",
"@storybook/addons": "^5.3.8",
"@storybook/react": "^5.3.8",
"@storybook/storybook-deployer": "^2.8.1",
"@testing-library/jest-dom": "^5.0.2",
"@testing-library/react": "^9.4.0",
"@testing-library/user-event": "^8.0.4",
"@types/classnames": "^2.2.9",
"@types/node": "^13.5.0",
"@types/react": "^16.9.19",
"@types/react-dom": "^16.9.5",
"alfa-ui-primitives": "2.4.3",
"arui-presets-lint": "^2.0.1",
"arui-presets-ts": "^5.0.0",
"babel-loader": "^8.0.6",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-config-airbnb-typescript": "^7.0.0",
"eslint-import-resolver-typescript": "^2.0.0",
"eslint-plugin-chai-friendly": "^0.5.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.18.3",
"eslint-plugin-react-hooks": "^2.3.0",
"eslint-plugin-sort-class-members": "^1.6.0",
"fork-ts-checker-webpack-plugin": "^4.0.2",
"git-url-parse": "^11.1.2",
"husky": "^4.2.1",
"lerna": "^3.20.2",
"postcss-cli": "^7.1.0",
"postcss-import": "^12.0.1",
"postcss-preset-env": "^6.7.0",
"react-docgen-typescript-loader": "^3.6.0",
"react-scripts": "^3.3.1",
"storybook-addon-designs": "^5.1.2",
"stylelint": "^13.1.0",
"stylelint-config-standard": "^20.0.0",
"ts-loader": "^6.2.1",
"typescript": "~3.7.5"
},
"publishConfig": {
"access": "public"
},
"peerDependencies": {
"react": ">=16.12.0",
"react-dom": ">=16.12.0"
},
"husky": {
"hooks": {
"pre-commit": "yarn test",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"commitlint": {
"extends": [
"./node_modules/arui-presets-lint/commitlint"
]
}
}