-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.42 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.42 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
{
"name": "rollup-react-package-template",
"version": "0.1.0",
"description": "A template to fast create npm packages which contain react components",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"scripts": {
"build": "npx rollup -c",
"test": "jest",
"storybook": "start-storybook --ci -p 6006",
"commitlint": "node ./node_modules/commitlint/cli.js",
"prettier": "./node_modules/prettier/bin-prettier.js --write ./src"
},
"author": "Ivan Savinov - noFl3x",
"license": "MIT",
"repository": {
"url": "git@github.com:saviway/react-package-template-rollup.git"
},
"peerDependencies": {
"react": "^16.13.1"
},
"keywords": [
"npm package",
"typescript",
"boilerplate",
"template",
"reactjs"
],
"typings": "./dist/index.d.ts",
"files": [
"dist/**/*"
],
"devDependencies": {
"@commitlint/config-conventional": "^11.0.0",
"@storybook/addon-actions": "^6.0.21",
"@storybook/addon-essentials": "^6.0.21",
"@storybook/addon-links": "^6.0.21",
"@storybook/react": "^6.0.21",
"@testing-library/jest-dom": "^5.11.4",
"@testing-library/react": "^11.0.4",
"@types/jest": "^26.0.13",
"commitlint": "^11.0.0",
"husky": "^4.3.0",
"jest": "^26.4.2",
"prettier": "^2.1.2",
"react-dom": "^16.13.1",
"rollup": "^2.27.0",
"rollup-plugin-typescript2": "^0.27.2",
"ts-jest": "^26.3.0",
"typescript": "^4.0.2"
}
}