-
-
Notifications
You must be signed in to change notification settings - Fork 149
/
package.json
94 lines (94 loc) · 2.72 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": "react-native-big-calendar",
"version": "4.15.2",
"main": "build/index.js",
"jsnext:main": "build/index.es.js",
"module": "build/index.es.js",
"types": "build/index.d.ts",
"repository": "[email protected]:acro5piano/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",
"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.11.13"
},
"peerDependencies": {
"react": "*",
"react-native": "*"
},
"devDependencies": {
"@babel/core": "^7.23.9",
"@babel/helper-builder-react-jsx-experimental": "^7.12.11",
"@babel/plugin-proposal-private-property-in-object": "^7.21.11",
"@react-native-picker/picker": "^2.6.1",
"@storybook/react": "^6.5.16",
"@swc/core": "^1.7.22",
"@swc/jest": "^0.2.29",
"@types/jest": "^29.5.6",
"@types/node": "^20.8.0",
"@types/react-native": "^0.65.0",
"@typescript-eslint/eslint-plugin": "^6.20.0",
"@typescript-eslint/parser": "^6.8.0",
"acorn-jsx": "^5.3.2",
"babel-loader": "^9.1.3",
"eslint": "^8.53.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"import-sort-style-module": "^6.0.0",
"jest": "^29.7.0",
"lint-staged": "^15.2.9",
"mockdate": "^3.0.5",
"npm-run-all": "^4.1.5",
"prettier": "^3.0.3",
"prettier-plugin-import-sort": "^0.0.7",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-native": "^0.75.2",
"react-native-web": "^0.19.11",
"remeda": "^1.39.0",
"rimraf": "^5.0.5",
"rn-tailwind": "^1.0.16",
"rollup": "^2.79.1",
"rollup-plugin-typescript2": "^0.36.0",
"simple-git-hooks": "^2.11.1",
"tailwind-rn": "^3.0.1",
"ts-loader": "^9.5.1",
"tslib": "^2.7.0",
"typescript": "^5.4.5",
"webpack-merge": "^5.10.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"
}
}
}