-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
100 lines (100 loc) · 2.87 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": "@npm-org/react-component-name",
"version": "0.0.0-semantic-release",
"description": "",
"keywords": [],
"homepage": "https://github.com/npm-org/react-component-name",
"bugs": "https://github.com/npm-org/react-component-name/issues",
"repository": {
"type": "git",
"url": "https://github.com/npm-org/react-component-name.git"
},
"main": "dist/index.js",
"scripts": {
"dev": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"build": "rm -rf dist && rollup --config ./rollup/build.config.js && yarn tsc:declaration",
"prepare": "yarn build && yarn readme",
"readme": "readme",
"update-dependencies": "npx npm-check-updates -u",
"tsc:declaration": "tsc --declaration --emitDeclarationOnly --declarationDir dist",
"tsc:validate": "tsc --noEmit",
"commit": "cz",
"lint:eslint": "eslint src",
"lint:prettier": "prettier src --check",
"lint": "yarn lint:eslint && yarn lint:prettier",
"prettier": "prettier src",
"ci-check": "yarn tsc:validate && yarn lint"
},
"author": "",
"license": "ISC",
"files": [
"dist/**/*"
],
"devDependencies": {
"@babel/core": "^7.17.5",
"@babel/preset-env": "^7.16.11",
"@babel/preset-react": "^7.16.7",
"@babel/preset-typescript": "^7.16.7",
"@orioro/readme": "^1.0.1",
"@rollup/plugin-babel": "^5.3.1",
"@rollup/plugin-commonjs": "^21.0.2",
"@rollup/plugin-node-resolve": "^13.1.3",
"@storybook/addon-actions": "^6.4.19",
"@storybook/addon-essentials": "^6.4.19",
"@storybook/addon-links": "^6.4.19",
"@storybook/react": "^6.4.19",
"@types/jest": "^27.4.1",
"@types/node": "^17.0.21",
"@types/react": "^17.0.39",
"@types/react-dom": "^17.0.11",
"@typescript-eslint/eslint-plugin": "^5.12.1",
"@typescript-eslint/parser": "^5.12.1",
"babel-loader": "^8.2.3",
"commitizen": "^4.2.4",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.9.0",
"eslint-config-prettier": "^8.4.0",
"husky": "^7.0.4",
"npm-check-updates": "^12.4.0",
"postcss": "^8.4.6",
"prettier": "^2.5.1",
"react-dom": "^17.0.2",
"react-is": "^17.0.2",
"rollup": "^2.68.0",
"rollup-plugin-postcss": "^4.0.2",
"semantic-release": "^19.0.2",
"typescript": "^4.5.5"
},
"dependencies": {
"@emotion/css": "^11.7.1",
"react": "^17.0.2"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"release": {
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/npm",
"@semantic-release/github"
],
"branches": [
"+([0-9])?(.{+([0-9]),x}).x",
"main",
"next",
"next-major",
{
"name": "beta",
"prerelease": true
},
{
"name": "alpha",
"prerelease": true
}
]
}
}