-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
100 lines (100 loc) · 3.06 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
{
"name": "@daktus/components",
"version": "0.2.0",
"scripts": {
"dev": "yarn storybook",
"build": "rollup -c",
"lint": "eslint \"./**/*.{ts,tsx,js}\"",
"test": "jest",
"test:watch": "jest --watch",
"storybook": "start-storybook -p 6006",
"storybook:build": "build-storybook",
"prepare": "husky install",
"publish": "yarn npm publish --access public"
},
"main": "./build/index.js",
"module": "./build/index.es.js",
"devDependencies": {
"@babel/core": "7.2.0",
"@babel/plugin-proposal-class-properties": "^7.13.0",
"@material-ui/core": "^4.12.2",
"@rollup/plugin-alias": "^3.1.2",
"@rollup/plugin-commonjs": "^17.1.0",
"@rollup/plugin-node-resolve": "^11.1.1",
"@rollup/plugin-url": "^6.0.0",
"@storybook/addon-actions": "^6.1.21",
"@storybook/addon-essentials": "^6.1.21",
"@storybook/addon-links": "^6.1.21",
"@storybook/preset-typescript": "^3.0.0",
"@storybook/react": "^6.1.21",
"@svgr/rollup": "^5.5.0",
"@svgr/webpack": "^5.5.0",
"@testing-library/dom": "^7.30.3",
"@testing-library/jest-dom": "^5.11.9",
"@testing-library/react": "^11.2.5",
"@testing-library/user-event": "^13.1.2",
"@types/clone-deep": "^4.0.1",
"@types/color": "^3.0.1",
"@types/jest": "^26.0.20",
"@types/node": "^14.14.25",
"@types/react": "^17.0.2",
"@types/react-dom": "^17.0.3",
"@typescript-eslint/eslint-plugin": "^4.15.0",
"@typescript-eslint/parser": "latest",
"@zerollup/ts-transform-paths": "^1.7.18",
"babel-loader": "^8.2.2",
"babel-preset-react-app": "^10.0.0",
"body-parser": "^1.19.0",
"bytes": "^3.1.0",
"eslint": "7.24.0",
"eslint-config-prettier": "^7.2.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.1.3",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0",
"fork-ts-checker-webpack-plugin": "^6.1.1",
"husky": "^6.0.0",
"jest": "^26.6.3",
"lint-staged": "^10.5.4",
"prettier": "^2.2.1",
"raw-body": "^2.4.1",
"react": "^17.0.1",
"react-dom": "^17.0.2",
"react-icons": "^4.2.0",
"rollup": "^2.38.5",
"rollup-plugin-cleaner": "^1.0.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-typescript2": "^0.29.0",
"svg-jest": "^1.0.1",
"ts-jest": "^26.5.0",
"tslib": "^2.1.0",
"ttypescript": "^1.5.12",
"typescript": "^4.2.3",
"url-loader": "^4.1.1"
},
"peerDependencies": {
"@material-ui/core": "^4.12.2",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-icons": "^4.2.0"
},
"files": [
"build"
],
"repository": "https://github.com/daktus/daktus-components.git",
"author": {
"name": "Gabriel Rocha",
"email": "gbrrochagbr@gmail.com"
},
"license": "MIT",
"dependencies": {
"clone-deep": "^4.0.1",
"color": "^3.1.3",
"react-key-from-object": "^0.0.7"
}
}