-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.53 KB
/
package.json
File metadata and controls
88 lines (88 loc) · 2.53 KB
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
{
"homepage": "https://cade-tecnologia.github.io/react-library",
"name": "@cade-tecnologia/react-library",
"version": "1.0.21",
"description": "Components and utilities to use be used with React",
"main": "./dist/index.js",
"module": "./dist/index.es.js",
"jsnext:main": "build/index.es.js",
"types": "./dist/index.d.ts",
"scripts": {
"start": "start-storybook",
"clean": "rm -rf ./dist && rm -rf ./dist-storybook",
"build": "yarn clean && rollup -c",
"build-storybook": "yarn clean && build-storybook -s public -c .storybook -o dist-storybook",
"prepare": "yarn run build"
},
"files": [
"dist/**/*"
],
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
},
"keywords": [
"cade",
"cade-tecnologia",
"Components",
"utilities"
],
"husky": {
"hooks": {
"post-commit": "yarn clean"
}
},
"repository": {
"type": "git",
"url": "https://github.com/cade-tecnologia/react-library"
},
"author": {
"name": "Mateus Gomes da Silva Cardoso",
"email": "mateus7532@gmail.com",
"url": "https://www.linkedin.com/in/mateus-gomes-da-silva-cardoso"
},
"maintainers": [
{
"name": "Mateus Gomes da Silva Cardoso",
"email": "mateus7532@gmail.com",
"url": "https://www.linkedin.com/in/mateus-gomes-da-silva-cardoso"
}
],
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.10.5",
"@storybook/addon-knobs": "^5.3.19",
"@storybook/addon-storysource": "^5.3.19",
"@storybook/addon-viewport": "^5.3.19",
"@storybook/react": "^5.3.19",
"@types/node": "^14.0.26",
"@types/react": "^16.9.43",
"@types/react-dom": "^16.9.8",
"@typescript-eslint/eslint-plugin": "^3.7.0",
"@typescript-eslint/parser": "^3.7.0",
"babel-loader": "^8.1.0",
"babel-preset-react-app": "^9.1.2",
"eslint": "7.2.0",
"eslint-config-airbnb": "18.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.21.2",
"eslint-plugin-jsx-a11y": "^6.3.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.20.0",
"eslint-plugin-react-hooks": "4.0.0",
"husky": "^4.2.5",
"prettier": "^2.0.5",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"rollup": "^2.23.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-peer-deps-external": "^2.2.3",
"rollup-plugin-typescript2": "^0.27.1",
"typescript": "^3.9.7"
},
"peerDependencies": {
"react": "^16",
"react-dom": "^16"
},
"dependencies": {}
}