-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
92 lines (92 loc) · 2.88 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
{
"name": "print-yearly-calendar",
"version": "0.0.0",
"private": true,
"homepage": "https://gpichot.github.io/print-yearly-calendar",
"type": "module",
"scripts": {
"build": "tsc && vite build",
"build-storybook": "build-storybook",
"build:scss:types": "typed-scss-modules src",
"predeploy": "npm run build -- --base=\"https://gpichot.github.io/print-yearly-calendar/\"",
"deploy": "gh-pages -d dist",
"dev": "vite",
"format": "prettier --write src",
"lint": "eslint src --ext .js,.jsx,.ts,.tsx",
"prepare": "husky install",
"preview": "vite preview",
"storybook": "start-storybook -p 6006",
"test": "jest"
},
"lint-staged": {
"*.{css,scss,md,mdx,json}": [
"prettier --write"
],
"*.{js,jsx,ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"package.json": [
"sort-package-json"
]
},
"dependencies": {
"classnames": "^2.3.2",
"countries-list": "^2.6.1",
"date-fns": "^2.29.3",
"i18next": "^21.10.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-i18next": "^11.18.6"
},
"devDependencies": {
"@babel/core": "^7.19.3",
"@commitlint/cli": "^17.1.2",
"@commitlint/config-conventional": "^17.1.0",
"@storybook/addon-actions": "^6.5.12",
"@storybook/addon-essentials": "^6.5.12",
"@storybook/addon-interactions": "^6.5.12",
"@storybook/addon-links": "^6.5.12",
"@storybook/builder-vite": "^0.2.4",
"@storybook/react": "^6.5.12",
"@storybook/testing-library": "^0.0.13",
"@storybook/testing-react": "^1.3.0",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@testing-library/react-hooks": "^8.0.1",
"@testing-library/user-event": "^14.4.3",
"@types/jest": "^29.1.2",
"@types/react": "^18.0.17",
"@types/react-dom": "^18.0.6",
"@typescript-eslint/eslint-plugin": "^5.39.0",
"@typescript-eslint/parser": "^5.39.0",
"@vitejs/plugin-react": "^2.1.0",
"babel-loader": "^8.2.5",
"eslint": "^8.25.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^3.5.1",
"eslint-plugin-cypress": "^2.12.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^27.1.1",
"eslint-plugin-jest-dom": "^4.0.2",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-react": "^7.31.9",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-simple-import-sort": "^8.0.0",
"eslint-plugin-storybook": "^0.6.4",
"eslint-plugin-testing-library": "^5.7.2",
"gh-pages": "^4.0.0",
"husky": "^8.0.1",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.1.2",
"jest-environment-jsdom": "^29.1.2",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"sass": "^1.55.0",
"sort-package-json": "^2.0.0",
"ts-jest": "^29.0.3",
"typed-scss-modules": "^7.0.1",
"typescript": "^4.6.4",
"vite": "^3.1.0"
}
}