-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
103 lines (103 loc) · 3.2 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
{
"name": "react-uploader-skeleton",
"version": "0.0.0-development",
"description": "A simple skeleton for building an awesome uploader component.",
"main": "dist/index.js",
"module": "dist/index.es.js",
"typings": "dist/types/src/index.d.ts",
"scripts": {
"build": "tsc --build && rollup -c ./rollup.config.ts",
"storybook": "start-storybook -p 6006 --debug-webpack --no-dll",
"build-storybook": "build-storybook",
"commit": "npx git-cz",
"precommit": "lint-staged",
"lib:publish": "npm run build && npm publish",
"semantic-release": "semantic-release"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Kunduin/react-uploader-skeleton.git"
},
"keywords": [
"react"
],
"author": "Bay",
"license": "MIT",
"bugs": {
"url": "https://github.com/Kunduin/react-uploader-skeleton/issues"
},
"homepage": "https://github.com/Kunduin/react-uploader-skeleton#readme",
"peerDependencies": {
"react": ">=16.0.0",
"react-dom": ">= 16.0.0"
},
"devDependencies": {
"@babel/core": "^7.4.5",
"@babel/plugin-proposal-class-properties": "^7.4.4",
"@babel/plugin-proposal-object-rest-spread": "^7.4.4",
"@babel/preset-env": "^7.4.5",
"@babel/preset-typescript": "^7.3.3",
"@storybook/addon-a11y": "^5.1.1",
"@storybook/addon-actions": "^5.1.1",
"@storybook/addon-info": "^5.1.1",
"@storybook/addon-links": "^5.1.1",
"@storybook/addons": "^5.1.1",
"@storybook/react": "^5.1.1",
"@svgr/rollup": "^4.2.0",
"@types/jest": "^24.0.12",
"@types/react": "^16.8.17",
"@types/react-dom": "^16.8.4",
"@types/storybook__addon-a11y": "^5.0.0",
"@types/storybook__addon-actions": "^3.4.3",
"@types/storybook__react": "^4.0.2",
"babel-loader": "^8.0.5",
"commitizen": "^3.1.1",
"cz-conventional-changelog": "2.1.0",
"husky": "^2.2.0",
"jest": "^24.8.0",
"lint-staged": "^8.2.1",
"prettier": "^1.17.0",
"react-docgen-typescript-loader": "^3.1.0",
"rollup": "^1.11.3",
"rollup-plugin-babel": "^4.3.2",
"rollup-plugin-commonjs": "^9.3.4",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-node-resolve": "^4.2.3",
"rollup-plugin-peer-deps-external": "^2.2.0",
"rollup-plugin-postcss": "^2.0.3",
"rollup-plugin-sourcemaps": "^0.4.2",
"rollup-plugin-typescript2": "^0.21.0",
"rollup-plugin-url": "^2.2.1",
"semantic-release": "^15.13.12",
"stylelint": "^10.0.1",
"stylelint-config-prettier": "^5.1.0",
"stylelint-config-rational-order": "^0.1.2",
"stylelint-config-standard": "^18.3.0",
"stylelint-declaration-block-no-ignored-properties": "^2.1.0",
"stylelint-order": "^3.0.0",
"ts-jest": "^24.0.2",
"tslint": "^5.16.0",
"tslint-config-prettier": "^1.18.0",
"tslint-react": "^4.0.0",
"typescript": "^3.5.1"
},
"dependencies": {},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"lint-staged": {
"{stories,src}/**/*.css": "stylelint",
"{stories,src}/**/*.{ts,tsx}": [
"tslint --project tsconfig.json -c tslint.json --fix",
"prettier --write",
"git add"
]
}
}