forked from gm0t/react-sticky-el
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
86 lines (86 loc) · 2.55 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
{
"name": "react-sticky-el",
"version": "2.1.3",
"description": "Sticky component for React",
"browserslist": "> 0.25%, not dead",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "npm run build-cjs && npm run build-storybook",
"build-cjs": "rimraf lib && tsc",
"start": "npm run storybook",
"test": "TS_NODE_PROJECT='./tsconfig.mocha.json' mocha test/unit",
"test-watch": "TS_NODE_PROJECT='./tsconfig.mocha.json' mocha -w --require ./test/setup test/unit",
"prepublishOnly": "npm run build",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gm0t/react-sticky-el.git"
},
"keywords": [
"react",
"reactjs",
"sticky",
"fixed",
"react-sticky"
],
"files": [
"lib",
"*.md"
],
"author": "Mikhail Bogdanov <admin@gm0.ru> (https://github.com/gm0t)",
"license": "MIT",
"bugs": {
"url": "https://github.com/gm0t/react-sticky-el/issues"
},
"homepage": "https://github.com/gm0t/react-sticky-el#readme",
"peerDependencies": {
"react": "^18",
"react-dom": "^18"
},
"devDependencies": {
"@babel/plugin-proposal-private-property-in-object": "^7.21.11",
"@storybook/addon-essentials": "^7.0.23",
"@storybook/addon-interactions": "^7.0.23",
"@storybook/addon-links": "^7.0.23",
"@storybook/blocks": "^7.0.23",
"@storybook/react": "^7.0.23",
"@storybook/react-webpack5": "^7.0.23",
"@storybook/testing-library": "^0.0.14-next.2",
"@types/chai": "^4.3.5",
"@types/enzyme": "^3.10.13",
"@types/enzyme-adapter-react-16": "^1.0.6",
"@types/jsdom": "^21.1.1",
"@types/mocha": "^10.0.1",
"@types/react": "^16.14.43",
"@types/sinon": "^10.0.15",
"@types/sinon-chai": "^3.2.9",
"@typescript-eslint/eslint-plugin": "^5.60.0",
"@typescript-eslint/parser": "^5.60.0",
"chai": "^4.2.0",
"cross-env": "^7.0.0",
"css-loader": "^6.8.1",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.2",
"eslint": "^8.43.0",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-storybook": "^0.6.12",
"jsdom": "^16.2.1",
"mocha": "^10.2.0",
"sass": "^1.77.8",
"prop-types": "^15.8.1",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-hot-loader": "^4.12.19",
"rimraf": "^3.0.1",
"sass-loader": "^13.2.2",
"sinon": "^8.1.1",
"sinon-chai": "^3.4.0",
"storybook": "^7.0.23",
"style-loader": "^1.1.3",
"ts-node": "^10.9.1",
"typescript": "^5.1.3"
}
}