-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
71 lines (71 loc) · 2.27 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
{
"name": "@natscale/react-calendar",
"version": "0.0.0-beta.26",
"description": "A no dependency, lightweight and feature-rich calendar component for react.",
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"repository": {
"url": "git+https://github.com/natscale/react-calendar.git",
"type": "git"
},
"license": "MIT",
"types": "dist/index.d.ts",
"devDependencies": {
"@types/node": "^16.0.0",
"@types/react": "16.8.0",
"@types/react-dom": "16.8.0",
"@typescript-eslint/eslint-plugin": "5.26.0",
"@typescript-eslint/parser": "5.26.0",
"concurrently": "7.2.1",
"eslint": "8.16.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-prettier": "4.0.0",
"eslint-plugin-react": "7.30.0",
"eslint-plugin-react-hooks": "4.5.0",
"postcss": "8.4.14",
"prepend-file": "2.0.1",
"prettier": "2.6.2",
"rollup": "2.74.1",
"rollup-plugin-delete": "2.0.0",
"rollup-plugin-postcss": "4.0.2",
"rollup-plugin-terser": "7.0.2",
"rollup-plugin-typescript2": "0.31.2",
"ts-node": "10.8.0",
"tslib": "2.4.0",
"typescript": "^4.1.0"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0 || ^18.0.0",
"react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0"
},
"scripts": {
"build": "rollup -c",
"build-watch": "rollup -c -w",
"prepublishOnly": "yarn build",
"dev": "concurrently --kill-others \"yarn run build-watch\" \"yarn run start-docs\"",
"test": "yarn run test:lint && yarn run test:unit",
"pretest": "yarn run build",
"test:unit": "ts-node test/test.ts",
"test:lint": "eslint ./src/**/*.ts ./src/**/*.tsx ./docs/src/**/*.ts ./docs/src/**/*.tsx",
"test:lint:fix": "yarn run test:lint -- --fix",
"start": "yarn dev",
"start-docs": "cd docs && yarn start",
"deploy": "yarn build && cd docs/ && yarn build && node_modules/gh-pages/bin/gh-pages.js -d .docz/dist",
"prettier": "npx prettier --write '**/*.{ts,tsx,jsx,js,css,html}'"
},
"files": [
"dist"
],
"bugs": {
"url": "https://github.com/natscale/react-calendar/issues"
},
"homepage": "https://natscale.github.io/react-calendar/",
"directories": {
"doc": "docs",
"test": "test"
},
"author": {
"name": "Tushar Sharma",
"url": "https://github.com/tusharf5"
}
}