-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
94 lines (94 loc) · 2.3 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
{
"name": "@raralabs/react-patro",
"version": "1.0.1",
"author": "Raralabs",
"license": "MIT",
"description": "AD and BS Calendar functions as hooks and component",
"main": "dist/index.js",
"module": "dist/index.esm",
"source": "src/index.tsx",
"typings": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "git://github.com/raralabs/react-patro.git"
},
"bugs": {
"url": "https://github.com/raralabs/react-patro/issues"
},
"engines": {
"node": ">=10"
},
"keywords": [
"ad2bs",
"bs2ad",
"nepali-calendar",
"datepicker",
"ad",
"bs",
"react-datepicker"
],
"scripts": {
"build": "rollup -c",
"dev": "rollup -cw",
"prepare": "run-s build",
"lint": "prettier --check .",
"format": "prettier --write ."
},
"dependencies": {
"@popperjs/core": "^2.9.2",
"date-fns": "^2.22.1"
},
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/preset-react": "^7.14.5",
"@babel/preset-typescript": "^7.9.0",
"@rollup/plugin-node-resolve": "^13.0.2",
"@testing-library/jest-dom": "^5.11.4",
"@testing-library/react": "^11.1.0",
"@testing-library/user-event": "^12.1.10",
"@types/jest": "^26.0.15",
"@types/node": "^16.0.0",
"@types/react": "^17.0.2",
"@types/react-dom": "^17.0.0",
"@typescript-eslint/eslint-plugin": "^2.34.0",
"@typescript-eslint/parser": "^2.34.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.19.0",
"husky": "^7.0.1",
"npm-run-all": "^4.1.5",
"prettier": "^2.3.2",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-scripts": "^3.4.1",
"rollup": "^2.53.2",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.30.0",
"tslib": "^1.14.1",
"typescript": "^4.1.2"
},
"peerDependencies": {
"react": ">=16.8.0",
"react-dom": ">=16.8.0"
},
"husky": {
"hooks": {
"pre-commit": "npm run format"
}
},
"eslintConfig": {
"extends": "react-app"
},
"files": [
"dist",
"package.json",
"src/styles.css"
],
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
}
}