forked from h6s-dev/h6s
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
140 lines (140 loc) · 4.05 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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
{
"name": "@veccu/react-calendar",
"version": "2.3.0",
"main": "dist/index.js",
"module": "esm/index.js",
"typings": "dist/index.d.ts",
"sideEffects": false,
"publishConfig": {
"access": "public"
},
"description": "Headless Calendar UI Library with react hooks",
"keywords": [
"calendar",
"headless",
"fullcalendar",
"react-calendar"
],
"license": "MIT",
"scripts": {
"prebuild": "rimraf dist esm",
"build": "concurrently \"rollup -c\" \"tsc --emitDeclarationOnly --declarationDir dist\"",
"semantic-release": "semantic-release",
"test": "jest --passWithNoTests",
"test:cov": "yarn test --coverage",
"test:watch": "yarn test --watch",
"lint": "eslint -c .eslintrc '{pages,src}/**/*.{js,jsx,ts,tsx}'",
"lint:fix": "yarn lint --fix",
"test:e2e": "cypress open",
"cypress": "cypress run",
"precommit": "lint-staged",
"typecheck": "tsc --noEmit",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"lint-staged": {
"src/**/*.ts": [
"eslint -c .eslintrc '{src}/**/*.{js,jsx,ts,tsx}' --fix",
"git add"
]
},
"husky": {
"hooks": {
"pre-push": "yarn lint && yarn typecheck"
}
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"author": "JaeYeopHan(Jbee)",
"repository": {
"type": "git",
"url": "https://github.com/veccu/react-calendar"
},
"files": [
"dist",
"esm"
],
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.12.1",
"@babel/plugin-proposal-optional-chaining": "^7.12.7",
"@babel/plugin-transform-runtime": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"@babel/preset-react": "^7.12.10",
"@babel/preset-typescript": "^7.12.7",
"@babel/runtime": "^7.12.5",
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@rollup/plugin-babel": "^5.2.2",
"@rollup/plugin-commonjs": "^17.0.0",
"@rollup/plugin-node-resolve": "^11.0.1",
"@semantic-release/git": "^9.0.0",
"@semantic-release/github": "^7.2.0",
"@storybook/addon-actions": "^6.2.9",
"@storybook/addon-essentials": "^6.2.9",
"@storybook/addon-links": "^6.2.9",
"@storybook/react": "^6.2.9",
"@testing-library/cypress": "^7.0.6",
"@testing-library/react-hooks": "^3.7.0",
"@types/react": "^17.0.0",
"@typescript-eslint/eslint-plugin": "^4.11.0",
"@typescript-eslint/parser": "^4.11.0",
"all-contributors-cli": "^6.19.0",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.2.2",
"concurrently": "^5.3.0",
"cypress": "^7.2.0",
"cz-conventional-changelog": "^3.3.0",
"date-fns": "^2.16.1",
"eslint": "^7.16.0",
"eslint-config-prettier": "^7.1.0",
"eslint-config-react-app": "^6.0.0",
"eslint-import-resolver-typescript": "^2.3.0",
"eslint-plugin-cypress": "^2.11.2",
"eslint-plugin-flowtype": "^5.2.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.3.0",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"husky": "^4.3.6",
"jest": "^26.6.3",
"lint-staged": "^10.5.3",
"prettier": "^2.2.1",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-test-renderer": "^17.0.1",
"rimraf": "^3.0.2",
"rollup": "^2.35.1",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-sourcemaps": "^0.6.3",
"rollup-plugin-terser": "^7.0.2",
"semantic-release": "^17.3.1",
"ts-jest": "^26.4.4",
"ts-node": "^9.1.1",
"typescript": "^4.1.3"
},
"peerDependencies": {
"date-fns": ">= 2",
"react": "^16.8.0 || ^17.0.0"
},
"peerDependenciesMeta": {
"react-dom": {
"optional": true
},
"react-native": {
"optional": true
}
},
"dependencies": {}
}