forked from Hellenic/react-hexgrid
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.73 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
{
"name": "react-hexgrid",
"description": "Interactive hexagon grids with React bindings",
"version": "2.0.1",
"main": "lib/index.js",
"author": "Hellenic",
"repository": "Hellenic/react-hexgrid",
"license": "MIT",
"scripts": {
"tsc": "tsc",
"tsc:watch": "tsc --watch",
"test:watch": "jest --watch --coverage",
"test": "jest --coverage",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"format": "prettier --write src/**/*.* package.json"
},
"peerDependencies": {
"react": ">=16.8.0"
},
"devDependencies": {
"@babel/core": "^7.18.6",
"@babel/preset-env": "^7.18.6",
"@babel/preset-typescript": "^7.18.6",
"@emotion/react": "^11.9.3",
"@emotion/styled": "^11.9.3",
"@storybook/addon-actions": "^6.5.9",
"@storybook/addon-essentials": "^6.5.9",
"@storybook/addon-interactions": "^6.5.9",
"@storybook/addon-links": "^6.5.9",
"@storybook/builder-webpack5": "^6.5.9",
"@storybook/manager-webpack5": "^6.5.9",
"@storybook/react": "^6.5.9",
"@storybook/testing-library": "^0.0.13",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "13.3.0",
"@types/jest": "^28.1.5",
"babel-cli": "*",
"babel-jest": "^28.1.2",
"jest": "^28.1.3",
"jest-environment-jsdom": "^28.1.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-test-renderer": "^18.2.0",
"react-transition-group": "^4.4.2",
"react-use": "17.4.0",
"ts-jest": "^28.0.6",
"ts-node": "^10.8.2",
"typescript": "^4.7.4",
"@changesets/cli": "^2.23.0"
},
"dependencies": {
"classnames": "^2.3.1"
},
"files": [
"lib/",
"dist/"
],
"optionalDependencies": {
"fsevents": "^1.2.13"
}
}