This repository has been archived by the owner on Apr 30, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
72 lines (72 loc) · 1.95 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
{
"name": "react-rough",
"version": "2.3.0",
"description": "React Bindings for Rough.js",
"source": "src/index.tsx",
"main": "dist/index.js",
"module": "dist/index.js",
"umd": "dist/index.js",
"homepage": "https://react-rough.dev.adegbuyi.me",
"scripts": {
"lint": "eslint src/*",
"prepublish": "npm run build",
"build": "microbundle --jsx React.createElement --external react,roughjs && build-storybook -c .storybook -o public",
"prebuild": "rimraf build dist",
"storybook": "start-storybook -p 6006 -c .storybook",
"prettier": "prettier --write '{src,__tests__}/*.tsx' '{src,__tests__}/*.ts'"
},
"files": [
"dist",
"README.md"
],
"repository": {
"type": "git",
"url": "git+https://github.com/ooade/react-rough.git"
},
"bugs": {
"url": "https://github.com/ooade/react-rough/issues"
},
"author": "Ademola Adegbuyi <[email protected]>",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.6",
"@babel/preset-env": "^7.9.6",
"@babel/preset-react": "^7.9.4",
"@storybook/addon-info": "^5.3.18",
"@storybook/addon-knobs": "^5.3.18",
"@storybook/addons": "^5.3.18",
"@storybook/react": "^5.3.18",
"@typescript-eslint/eslint-plugin": "^3.0.0",
"@typescript-eslint/parser": "^3.0.0",
"awesome-typescript-loader": "^5.2.1",
"babel-loader": "^8.1.0",
"eslint": "^7.0.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-react": "^7.20.0",
"eslint-plugin-react-hooks": "^4.0.2",
"ghooks": "^2.0.4",
"microbundle": "^0.12.0-next.9",
"prettier": "^1.19.1",
"react": "^16.13.1",
"react-docgen-typescript-loader": "^3.6.0",
"react-dom": "^16.13.1",
"rimraf": "^3.0.0",
"roughjs": "^4.3.1",
"storybook-addon-jsx": "^7.2.3",
"typescript": "^3.9.2"
},
"dependencies": {
"use-deep-compare-effect": "^1.3.1"
},
"peerDependencies": {
"react": "^16.13.1",
"react-dom": "^16.13.1",
"roughjs": "^4.3.1"
},
"config": {
"ghooks": {
"pre-commit": "npm run prettier"
}
}
}