This repository was archived by the owner on Apr 24, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
117 lines (117 loc) · 3.71 KB
/
package.json
File metadata and controls
117 lines (117 loc) · 3.71 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
106
107
108
109
110
111
112
113
114
115
116
117
{
"name": "@qimpl/components-library",
"version": "0.8.7",
"main": "dist/index.js",
"module": "dist/index.modern.js",
"source": "src/index.ts",
"engines": {
"node": ">=10"
},
"repository": {
"type": "git",
"url": "https://github.com/qimpl/components-library.git"
},
"scripts": {
"build": "microbundle-crl --tsconfig tsconfig.prod.json --no-compress --format modern,cjs",
"start": "microbundle-crl watch --no-compress --format modern,cjs",
"lint": "run-s lint:js lint:css",
"lint:js": "eslint --cache --ext .ts,.tsx .",
"lint:css": "stylelint 'src/**/*.{ts,tsx}'",
"lint:js:report": "eslint --cache --ext .ts,.tsx --output-file eslint_report.json --format json .",
"lint:js:fix": "eslint --cache --fix --ext .ts,.tsx .",
"prettier": "prettier --check .",
"prettier:fix": "prettier --write .",
"test": "run-s test:unit test:build",
"test:build": "run-s build",
"test:unit": "jest",
"test:watch": "react-scripts test --env=jsdom",
"storybook": "start-storybook -s ./static -p 6006",
"build-storybook": "build-storybook -o public"
},
"peerDependencies": {
"polished": ">=4.1.0",
"react": ">=16.9.0",
"react-dom": ">=16.9.0",
"react-use": ">=17",
"styled-components": ">= 5"
},
"devDependencies": {
"@babel/core": "^7.12.17",
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@qimpl/eslint-config": "^1.4.1",
"@qimpl/stylelint-config": "^1.1.0",
"@storybook/addon-actions": "^6.1.18",
"@storybook/addon-essentials": "^6.1.18",
"@storybook/addon-links": "^6.1.18",
"@testing-library/react": "^11.2.5",
"@types/carbon__icons-react": "^10.28.0",
"@types/jest": "^26.0.20",
"@types/node": "^14.14.30",
"@types/react": "^17.0.2",
"@types/react-dom": "^17.0.1",
"@types/styled-components": "^5.1.7",
"@typescript-eslint/eslint-plugin": "^4.15.1",
"@typescript-eslint/parser": "^4.15.1",
"babel-eslint": "^10.1.0",
"babel-plugin-module-resolver": "^4.0.0",
"cross-env": "^7.0.2",
"eslint": "^7.20.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^6.15.0",
"eslint-import-resolver-babel-module": "^5.2.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx": "^0.1.0",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0",
"gh-pages": "^2.2.0",
"husky": "^4.3.8",
"jest": "^26.6.3",
"lint-staged": "^10.5.4",
"microbundle-crl": "^0.13.10",
"npm-run-all": "^4.1.5",
"prettier": "^2.2.1",
"react": "^17.0.0",
"react-dom": "^17.0.1",
"react-scripts": "^4.0.3",
"react-swipeable": "^6.1.0",
"react-use": "^17.2.4",
"styled-components": "^5.2.1",
"stylelint": "^13.11.0",
"stylelint-config-prettier": "^8.0.2",
"stylelint-config-rational-order": "^0.1.0",
"stylelint-config-standard": "^20.0.0",
"stylelint-config-styled-components": "^0.1.1",
"stylelint-order": "^4.1.0",
"stylelint-processor-styled-components": "^1.10.0",
"ts-jest": "^26.5.1",
"typescript": "^4.2.0"
},
"dependencies": {
"@carbon/icons-react": "^10.29.0",
"@react-google-maps/api": "^2.1.1",
"@storybook/preset-create-react-app": "^3.1.6",
"@storybook/react": "^6.1.18",
"formik": "^2.2.6",
"polished": ">=4.1.0",
"react-cookie-consent": "^6.2.3",
"react-swipeable": "^6.1.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix",
"stylelint"
],
"*.{js,jsx,ts,tsx,html,md}": "prettier --write"
},
"files": [
"dist"
]
}