-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
82 lines (82 loc) · 2.49 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
{
"name": "scroller-with-sticky-header",
"version": "1.0.4",
"description": "Scroller with sticky header",
"keywords": [
"scroller-with-sticky-header",
"sticky-header",
"react",
"scroll",
"scroller"
],
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "https://github.com/tvankith/scroller-with-sticky-header.git"
},
"scripts": {
"prepare": "husky && husky install && chmod ug+x .husky/*",
"build": "vite build && node scripts/add-css-import.js",
"test": "echo \"Error: no test specified\" && exit 1",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"watch": "vite & tcm --watch -p '*.module.css' .",
"check:up-to-date-types": "tcm --listDifferent .",
"lint": "npx eslint . --fix",
"release": "npx semantic-release",
"cypress:open": "cypress open"
},
"lint-staged": {
"**/*.{js,jsx,ts,tsx,html,css,json}": [
"npx prettier --write",
"npm run lint",
"npm run build",
"npx cypress run --component"
]
},
"author": "TV Ankith",
"license": "ISC",
"devDependencies": {
"@commitlint/cli": "^18.6.1",
"@commitlint/config-conventional": "^18.6.3",
"@semantic-release/git": "^10.0.1",
"@storybook/addon-docs": "^7.6.16",
"@storybook/addon-essentials": "^7.6.15",
"@storybook/addon-interactions": "^7.6.15",
"@storybook/addon-links": "^7.6.15",
"@storybook/addon-onboarding": "^1.0.11",
"@storybook/blocks": "^7.6.15",
"@storybook/react": "^7.6.15",
"@storybook/react-vite": "^7.6.15",
"@storybook/test": "^7.6.15",
"@types/react": "^18.2.55",
"@types/react-dom": "^18.2.19",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@vitejs/plugin-react": "^4.2.1",
"cypress": "^13.7.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard-with-typescript": "^43.0.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.33.2",
"husky": "^8.0.0",
"lint-staged": "^15.2.2",
"prettier": "^3.2.5",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rollup-plugin-terser": "^7.0.2",
"semantic-release": "^23.0.2",
"storybook": "^7.6.15",
"typed-css-modules": "^0.9.1",
"typescript": "^5.3.3",
"vite": "^4.5.2",
"vite-plugin-dts": "^3.7.2"
},
"peerDependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
}
}