-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) Β· 2.91 KB
/
Copy pathpackage.json
File metadata and controls
97 lines (97 loc) Β· 2.91 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
89
90
91
92
93
94
95
96
97
{
"name": "@qonsoll/react-components-library-boilerplate",
"version": "1.0.0",
"description": "Production ready boilerplate for your next react components library",
"main": "build/index.js",
"module": "build/index.es.js",
"files": [
"build"
],
"scripts": {
"build": "rollup -c",
"storybook": "start-storybook -p 6006",
"storybook:export": "build-storybook",
"test": "jest",
"test:watch": "jest --watch",
"format": "prettier --write src/**/*.ts{,x}",
"lint": "tsc --noEmit && eslint src/**/*.ts{,x}"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/qonsoll/react-components-library-boilerplate.git"
},
"keywords": [
"react",
"react v17",
"components",
"library",
"jest",
"typescript",
"scss",
"css modules",
"styled components",
"rollup",
"eslint",
"prettier"
],
"author": "qonsoll",
"license": "MIT",
"bugs": {
"url": "https://github.com/qonsoll/react-components-library-boilerplate/issues"
},
"homepage": "https://github.com/qonsoll/react-components-library-boilerplate#readme",
"peerDependencies": {
"react": ">=16.8.0",
"react-dom": ">=16.8.0"
},
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"@babel/preset-react": "^7.12.10",
"@rollup/plugin-babel": "^5.2.2",
"@rollup/plugin-commonjs": "^17.0.0",
"@rollup/plugin-multi-entry": "^4.0.0",
"@rollup/plugin-node-resolve": "^11.1.0",
"@storybook/addon-actions": "^6.1.14",
"@storybook/react": "^6.1.14",
"@testing-library/jest-dom": "^5.11.9",
"@testing-library/react": "^11.2.3",
"@types/jest": "^26.0.20",
"@types/react": "^17.0.0",
"@types/styled-components": "^5.1.7",
"@typescript-eslint/eslint-plugin": "^4.13.0",
"@typescript-eslint/parser": "^4.13.0",
"babel-loader": "^8.2.2",
"babel-preset-react-app": "^10.0.0",
"eslint": "7.2.0",
"eslint-config-airbnb": "18.2.1",
"eslint-config-airbnb-typescript": "^12.0.0",
"eslint-config-prettier": "^7.1.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.1.3",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "4.0.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^26.6.3",
"node-sass": "^5.0.0",
"postcss": "^8.2.4",
"postcss-nested": "^5.0.3",
"prettier": "^2.2.1",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"rollup": "^2.36.1",
"rollup-plugin-astroturf": "^0.1.0",
"rollup-plugin-css-only": "^3.1.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-postcss": "^4.0.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.29.0",
"rollup-watch": "^4.3.1",
"sass-loader": "^10.1.1",
"styled-components": "^5.2.1",
"ts-jest": "^26.4.4",
"typescript": "^4.1.3"
}
}