-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
113 lines (113 loc) · 3.21 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
{
"name": "@dvhb/ui",
"version": "1.1.1",
"description": "components for dvhb design system",
"license": "MIT",
"main": "dist/index.js",
"module": "dist/index.es.js",
"jsnext:main": "dist/index.es.js",
"typings": "dist/index",
"files": [
"dist",
"README.md"
],
"scripts": {
"prebuild": "npm run clean",
"build": "rollup -c",
"build:dev": "rollup -c -w",
"clean": "rm -rf ./dist",
"compile": "tsc",
"dev": "tsc --watch",
"docz": "docz dev",
"docz:build": "docz build",
"lint": "tslint -p tsconfig.json -c tslint.json -t verbose",
"presemantic-release": "npm run build",
"semantic-release": "semantic-release",
"storybook": "start-storybook -p 9009 -s public --quiet",
"local-build-and-publish": "npm run build && yalc push"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged && tsc --noEmit",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"*.{json,md,graphql}": [
"prettier --write",
"git add --force"
],
"*.{ts,tsx}": [
"tslint --fix",
"git add --force"
]
},
"dependencies": {
"@types/classnames": "^2.2.10",
"@types/react-input-mask": "^2.0.5",
"@types/react-modal": "^3.10.5",
"@types/react-select": "^3.0.11",
"axios": "^0.19.2",
"body-scroll-lock": "^3.0.2",
"classnames": "^2.2.6",
"react-day-picker": "^7.4.8",
"react-dropzone": "^11.0.1",
"react-grid-system": "^6.2.3",
"react-input-mask": "^2.0.4",
"react-modal": "^3.11.2",
"react-select": "^3.1.0",
"react-tiny-popover": "^4.0.0"
},
"devDependencies": {
"@commitlint/cli": "^8.2.0",
"@commitlint/config-conventional": "^8.2.0",
"@dvhb/tslint-config-react": "^1.0.9",
"@semantic-release/changelog": "^5.0.0",
"@semantic-release/git": "^9.0.0",
"@storybook/addon-actions": "^5.3.12",
"@storybook/addon-knobs": "^5.3.13",
"@storybook/addon-links": "^5.3.12",
"@storybook/addons": "^5.3.12",
"@storybook/preset-create-react-app": "^1.5.2",
"@storybook/react": "^5.3.12",
"@types/body-scroll-lock": "^2.6.1",
"@types/node": "^10.14.6",
"@types/react": "^16.9.19",
"@types/react-dom": "^16.9.6",
"docz": "^2.2.0",
"final-form": "^4.19.1",
"husky": "^4.2.1",
"lint-staged": "^10.0.7",
"node-sass": "^4.13.1",
"prettier": "^1.19.1",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-final-form": "^6.4.0",
"react-scripts": "3.3.1",
"rollup": "^1.16.6",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-commonjs": "^10.0.1",
"rollup-plugin-copy": "^3.3.0",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-peer-deps-external": "^2.2.0",
"rollup-plugin-postcss": "^2.9.0",
"rollup-plugin-typescript2": "^0.22.0",
"semantic-release": "^17.0.0",
"tslint": "^6.0.0",
"typescript": "^3.5.3"
},
"peerDependencies": {
"react": "16.x"
},
"release": {
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
"@semantic-release/github",
"@semantic-release/npm",
"@semantic-release/git"
]
}
}