forked from Kunduin/react-picture-annotation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
96 lines (96 loc) · 2.82 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
{
"name": "react-picture-annotation",
"version": "0.0.0-development",
"description": "A simple annotation 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.js",
"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": "https://github.com/Kunduin/react-picture-annotation.git"
},
"keywords": [
"react",
"typescript-library",
"javascript-library",
"annotation"
],
"author": "Bay",
"license": "MIT",
"bugs": {
"url": "https://github.com/Kunduin/react-picture-annotation/issues"
},
"homepage": "https://github.com/Kunduin/react-picture-annotation#readme",
"peerDependencies": {
"react": ">=16.0.0",
"react-dom": ">=16.0.0"
},
"devDependencies": {
"@babel/core": "^7.11.0",
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/plugin-proposal-decorators": "^7.10.5",
"@babel/preset-env": "^7.11.0",
"@babel/preset-react": "^7.10.4",
"@babel/preset-typescript": "^7.10.4",
"@rollup/plugin-babel": "^5.1.0",
"@rollup/plugin-node-resolve": "^8.4.0",
"@rollup/plugin-typescript": "^5.0.2",
"@storybook/addon-a11y": "^5.2.3",
"@storybook/addon-actions": "^5.2.3",
"@storybook/addon-info": "^5.3.19",
"@storybook/addon-links": "^5.2.3",
"@storybook/addons": "^5.2.3",
"@storybook/preset-create-react-app": "^3.1.4",
"@storybook/react": "^5.2.3",
"@svgr/rollup": "^5.4.0",
"@types/jest": "^26.0.8",
"@types/react": "^16.9.1",
"@types/react-dom": "^16.9.1",
"@types/storybook__react": "^5.2.1",
"babel-loader": "^8.0.5",
"babel-preset-react-app": "^9.1.2",
"commitizen": "^4.0.0",
"cz-conventional-changelog": "3.2.0",
"husky": "^4.2.5",
"jest": "^26.2.2",
"lint-staged": "^10.2.11",
"prettier": "^2.0.5",
"react-docgen-typescript-loader": "^3.7.2",
"rollup": "^2.23.0",
"rollup-plugin-peer-deps-external": "^2.2.3",
"rollup-plugin-postcss": "^3.1.4",
"semantic-release": "^17.1.1",
"ts-jest": "^26.1.4",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"tslint-react": "^5.0.0",
"typescript": "^3.9.7"
},
"dependencies": {},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"lint-staged": {
"{stories,src}/**/*.{ts,tsx}": [
"tslint --project tsconfig.json -c tslint.json --fix",
"prettier --write",
"git add"
]
}
}