forked from acro5piano/react-native-big-calendar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
99 lines (99 loc) · 2.99 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
{
"name": "react-native-big-calendar",
"version": "2.9.1",
"main": "build/index.js",
"jsnext:main": "build/index.es.js",
"module": "build/index.es.js",
"types": "build/index.d.ts",
"repository": "[email protected]:llotheo/react-native-big-calendar",
"author": "gosho-kazuya <[email protected]>",
"license": "MIT",
"scripts": {
"prepare": "simple-git-hooks || true",
"storybook": "start-storybook -p 7007",
"build-storybook": "build-storybook -o .storybook-build",
"sync-rndemo": "yarn build && cp -r build rndemo",
"start-rndemo-ios": "yarn sync-rndemo && cd rndemo && yarn ios",
"start-rndemo-android": "yarn sync-rndemo && cd rndemo && yarn android",
"test": "jest",
"format": "prettier --write {src,stories}/**.{ts,tsx}",
"lint": "eslint --ext ts,tsx src stories",
"lint:fix": "yarn lint --fix",
"watch": "rollup -cw",
"prepublish": "npm run build",
"build": "npm-run-all build:clean build:ts",
"build:clean": "rimraf build/",
"build:ts": "env NODE_ENV=production rollup -c"
},
"dependencies": {
"calendarize": "^1.1.1",
"dayjs": "^1.10.7",
"merge-anything": "^4.0.2"
},
"peerDependencies": {
"react": "^16.8.3||^17.0.0",
"react-native": "^0.59.0||^0.60.0||^0.61.0||^0.62.0||^0.63.0||^0.64.0||^0.65.0||^0.66.0"
},
"devDependencies": {
"@babel/core": "^7.16.0",
"@babel/helper-builder-react-jsx-experimental": "^7.12.11",
"@babel/plugin-proposal-private-property-in-object": "^7.16.0",
"@rollup/plugin-typescript": "^8.3.0",
"@storybook/react": "^6.3.12",
"@types/jest": "^27.0.3",
"@types/node": "^16.11.12",
"@types/react-native": "^0.65.0",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"acorn-jsx": "^5.3.2",
"babel-loader": "^8.2.2",
"eslint": "^7.30.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-react": "^7.27.1",
"eslint-plugin-react-hooks": "^4.3.0",
"import-sort-style-module": "^6.0.0",
"jest": "^25.5.4",
"lint-staged": "^12.1.2",
"mockdate": "^3.0.5",
"npm-run-all": "^4.1.5",
"prettier": "^2.5.1",
"prettier-plugin-import-sort": "^0.0.7",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-native": "^0.66.3",
"react-native-web": "^0.17.5",
"remeda": "^0.0.30",
"rimraf": "^3.0.2",
"rn-tailwind": "^1.0.16",
"rollup": "^2.56.3",
"rollup-plugin-typescript2": "^0.30.0",
"simple-git-hooks": "^2.7.0",
"tailwind-rn": "^3.0.1",
"ts-jest": "^25.5.1",
"ts-loader": "^9.2.6",
"tslib": "^2.3.1",
"typescript": "^4.5.2",
"webpack-merge": "^5.8.0"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
},
"lint-staged": {
"*.{ts,tsx,js,jsx}": [
"prettier --write",
"eslint --fix"
],
"*.{md}": [
"prettier --write"
]
},
"importSort": {
".js, .jsx, .ts, .tsx": {
"style": "module",
"parser": "typescript"
}
},
"resolutions": {
"typescript": "^4.3.5"
}
}