-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.22 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 2.22 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
{
"name": "my-components",
"version": "1.0.0",
"description": "My Component Library template",
"main": "build/index.js",
"module": "build/index.es.js",
"jsnext:main": "build/index.es.js",
"scripts": {
"lint": "eslint --ext .ts,.tsx,.js src",
"build": "rollup -c",
"test": "jest --coverage",
"storybook": "start-storybook",
"format": "prettier --write src"
},
"keywords": [],
"author": {
"name": "Ernesto Freyre",
"email": "ernestofreyreg@gmail.com",
"url": "https://medium.com/@efreyreg"
},
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.12.9",
"@babel/plugin-transform-regenerator": "^7.12.1",
"@babel/preset-env": "^7.12.7",
"@babel/preset-react": "^7.12.7",
"@babel/preset-typescript": "^7.12.7",
"@storybook/addon-a11y": "^6.1.8",
"@storybook/addon-actions": "^6.1.8",
"@storybook/addon-docs": "^6.1.8",
"@storybook/addon-essentials": "^6.1.8",
"@storybook/addon-links": "^6.1.8",
"@storybook/addon-storyshots": "^6.1.8",
"@storybook/addon-viewport": "^6.1.8",
"@storybook/react": "^6.1.8",
"@testing-library/jest-dom": "^5.11.6",
"@testing-library/react": "^11.2.2",
"@types/jest": "^26.0.15",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"@typescript-eslint/eslint-plugin": "^4.8.2",
"babel-loader": "^8.2.2",
"eslint": "^7.14.0",
"eslint-config-standard-with-typescript": "^19.0.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.1.3",
"eslint-plugin-jest-dom": "^3.3.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-standard": "^5.0.0",
"jest": "^26.6.3",
"prettier": "^2.2.1",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"rollup": "^2.33.3",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-typescript2": "^0.29.0",
"ts-jest": "^26.4.4",
"ts-loader": "^8.0.11",
"typescript": "^4.1.2"
},
"peerDependencies": {
"react": "^17",
"react-dom": "^17"
}
}