-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
107 lines (107 loc) · 3.06 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
{
"name": "@habx/ui-core",
"version": "5.57.0",
"description": "HABX Design System",
"sideEffects": false,
"main": "./dist/index.cjs.js",
"module": "./dist/esm/index.js",
"types": "./dist/typings/index.d.ts",
"scripts": {
"clean": "rimraf ./dist",
"build": "npm run clean && npm run build:esm && npm run build:cjs",
"build:esm": "tsc",
"build:cjs": "bili",
"build:watch": "npm run clean && tsc --watch",
"lint": "eslint \"src/**\"",
"storybook": "start-storybook -p 9001 -c .storybook",
"storybook:build": "build-storybook -c .storybook -o .storybook-static",
"storybook:deploy": "storybook-to-ghpages -s storybook:build --ci -t=GITHUB_TOKEN",
"test": "jest --runInBand",
"test:coverage": "jest --coverage",
"type:coverage": "tscov"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/habx/ui-core.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/habx/ui-core/issues"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged && npm run test"
}
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint --fix"
]
},
"homepage": "https://github.com/habx/ui-core#readme",
"peerDependencies": {
"react": "^17.0.2",
"react-dom": "^17.0.2",
"styled-components": "^5.3.3"
},
"dependencies": {
"@datepicker-react/hooks": "^2.8.4",
"@delangle/use-modal": "^1.9.41",
"color-parse": "^1.4.2",
"date-fns": "^2.28.0",
"lodash.deburr": "^4.1.0",
"markdown-it": "^12.3.2",
"merge": "^2.1.1",
"react-easy-swipe": "0.0.22",
"react-is": "^17.0.2"
},
"devDependencies": {
"@habx/config-ci-front": "^0.19.0",
"@habx/eslint-config-client": "^6.6.0",
"@liftr/tscov": "^2.0.0",
"@storybook/addon-docs": "^6.4.19",
"@storybook/addon-essentials": "^6.4.19",
"@storybook/addon-links": "^6.4.19",
"@storybook/react": "^6.4.19",
"@storybook/storybook-deployer": "^2.8.10",
"@storybook/theming": "^6.4.19",
"@testing-library/jest-dom": "^5.16.2",
"@testing-library/react": "^12.1.3",
"@types/jest": "^27.4.0",
"@types/lodash.deburr": "^4.1.6",
"@types/markdown-it": "12.2.3",
"@types/react": "^17.0.39",
"@types/react-dom": "^17.0.11",
"@types/react-is": "^17.0.3",
"@types/sinon": "^10.0.11",
"@types/styled-components": "^5.1.23",
"bili": "^5.0.5",
"eslint-plugin-mdx": "^1.16.0",
"husky": "^4.3.8",
"jest": "^27.5.1",
"jest-environment-jsdom-sixteen": "^1.0.3",
"lint-staged": "^12.3.4",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"rimraf": "^3.0.2",
"rollup-plugin-typescript2": "^0.31.2",
"sinon": "^13.0.1",
"storybook-addon-designs": "^6.2.1",
"storybook-dark-mode": "^1.0.9",
"styled-components": "^5.3.3",
"styled-normalize": "^8.0.7",
"ts-jest": "^27.1.3",
"tslib": "2.3",
"typescript": "^4.5.5"
},
"storybook-deployer": {
"commitMessage": "[SKIP CI] Deploy Storybook to GitHub Pages"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com"
}
}