-
Notifications
You must be signed in to change notification settings - Fork 48
/
Copy pathpackage.json
85 lines (85 loc) · 2.69 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
{
"name": "zaman",
"version": "2.1.1",
"description": "React component that helps you to makes simple Farsi/Jalali/Shamsi date picker. It also has range date picker you can select multiple days in multiple months.",
"main": "dist/index.js",
"scripts": {
"cypress:open": "cypress open",
"test:e2e": "cypress run --browser=chrome --component",
"test": "NODE_ENV=test jest",
"test:watch": "NODE_ENV=test jest --watchAll",
"test:update": "NODE_ENV=test jest -- -u",
"build": "rm -rf dist && rollup -c --bundleConfigAsCjs",
"dev": "vite",
"watch": "rollup -c rollup.config.js -w",
"lint:fix": "eslint --fix src",
"format": "prettier src --write",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "[email protected]:rzkhosroshahi/react-jalali-datepicker.git"
},
"keywords": [
"datepicker",
"farsi",
"jalali",
"shamsi"
],
"author": "reza khosroshahi",
"license": "ISC",
"bugs": {
"url": "https://github.com/rzkhosroshahi/react-jalali-datepicker/issues"
},
"devDependencies": {
"@babel/core": "^7.21.0",
"@babel/preset-env": "^7.20.2",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.21.0",
"@commitlint/cli": "^17.6.1",
"@commitlint/config-conventional": "^17.6.1",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-commonjs": "^24.0.1",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-terser": "^0.4.0",
"@rollup/plugin-typescript": "^11.0.0",
"@testing-library/cypress": "^9.0.0",
"@testing-library/react": "^14.0.0",
"@types/cypress": "^1.1.3",
"@types/jest": "^29.4.0",
"@types/lodash.debounce": "^4.0.7",
"@types/node": "^18.13.0",
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.10",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.51.0",
"@vitejs/plugin-react": "^3.1.0",
"babel-jest": "^29.4.3",
"cypress": "^12.10.0",
"eslint": "^8.0.1",
"eslint-config-prettier": "^9.0.0",
"eslint-config-standard-with-typescript": "^34.0.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-n": "^15.0.0",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-react": "^7.32.2",
"husky": "^8.0.3",
"jest": "^29.4.3",
"jest-environment-jsdom": "^29.4.3",
"prettier": "^3.1.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rollup": "^3.15.0",
"rollup-plugin-esbuild": "^5.0.0",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"typescript": "*",
"vite": "^4.1.0"
},
"dependencies": {
"@emotion/react": "^11.10.5",
"@emotion/styled": "^11.10.5",
"dayjs": "^1.11.7"
}
}