-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 1.98 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 1.98 KB
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
{
"name": "@galangel/react-scroll-magic",
"version": "1.0.4",
"description": "Powerful scroll component that feels like magic!",
"author": "Gal Angel <gal0angel@gmail.com> (@gal.angel)",
"keywords": [
"scroll",
"react",
"sticky",
"list"
],
"license": "Apache-2.0",
"private": false,
"repository": {
"type": "git",
"url": "git+https://github.com/galangel/react-scroll-magic.git"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"type": "module",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist"
],
"sideEffects": false,
"scripts": {
"prepare": "husky",
"dev": "storybook dev -p 6006",
"build": "tsc && vite build",
"build-storybook": "storybook build",
"format": "prettier --check \"src/**/*.{ts,tsx,css}\"",
"test": "vitest run",
"storybook": "storybook dev -p 6006"
},
"dependencies": {
"react": "^18.0.0",
"react-dom": "^18.0.0"
},
"devDependencies": {
"@faker-js/faker": "^9.4.0",
"@storybook/addon-essentials": "^7.6.17",
"@storybook/addon-interactions": "^7.6.17",
"@storybook/addon-links": "^7.6.17",
"@storybook/blocks": "^7.6.17",
"@storybook/react": "^7.6.17",
"@storybook/react-vite": "^7.6.17",
"@storybook/testing-library": "^0.2.2",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.2.0",
"@testing-library/user-event": "^14.6.0",
"@types/node": "^20.11.24",
"@types/react": "^18.2.56",
"@types/react-dom": "^18.2.19",
"@vitejs/plugin-react": "^4.2.1",
"husky": "^9.1.7",
"jsdom": "^26.0.0",
"prettier": "^3.4.2",
"storybook": "^7.6.17",
"typescript": "^5.2.2",
"vite": "^5.1.4",
"vite-plugin-dts": "^3.7.3",
"vitest": "^3.0.0"
}
}