-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
94 lines (94 loc) · 2.95 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
93
94
{
"name": "react-spring-dialog",
"version": "1.1.15",
"description": "A simple, accessible and performant dialog component",
"author": "Emiliano Bucci",
"license": "MIT",
"homepage": "https://react-spring-dialog.emilianobucci.com",
"repository": "https://github.com/Emiliano-Bucci/react-spring-dialog",
"keywords": [
"react",
"react-spring",
"react-spring-dialog",
"react-dialog",
"dialog",
"modal",
"react-spring-modal",
"react-modal",
"animated"
],
"scripts": {
"start": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"build:lib": "rollup -c",
"lint": "eslint --fix --config .eslintrc.js 'src/**/*.{ts,tsx,js}'",
"prepare": "husky install",
"lint-staged": "lint-staged",
"test": "NODE_ENV=test jest --watch",
"check:tag:branch": "node --experimental-modules scripts/release.js",
"release:test": "jest",
"push:tags": "git push --follow-tags",
"release:lib": "npm run lint && npm run release:test && npm run check:tag:branch && npm run build:lib && npm run push:tags && npm publish",
"storybook": "start-storybook -p 6006"
},
"main": "dist/index.umd.js",
"module": "dist/index.es.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"devDependencies": {
"@babel/core": "^7.17.9",
"@babel/preset-react": "^7.16.7",
"@rollup/plugin-commonjs": "^21.1.0",
"@rollup/plugin-node-resolve": "^13.2.1",
"@storybook/addon-actions": "^6.5.0-alpha.63",
"@storybook/addon-essentials": "^6.5.0-alpha.63",
"@storybook/addon-links": "^6.5.0-alpha.63",
"@storybook/react": "^6.5.0-alpha.63",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.1.1",
"@testing-library/user-event": "^14.1.0",
"@types/jest": "^27.4.1",
"@types/react": "^18.0.5",
"@types/react-dom": "^18.0.1",
"@typescript-eslint/eslint-plugin": "^5.19.0",
"@typescript-eslint/parser": "^5.19.0",
"babel-loader": "^8.2.4",
"chalk": "^5.0.1",
"eslint": "^8.13.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.29.4",
"eslint-plugin-react-hooks": "^4.4.0",
"eslint-plugin-testing-library": "^5.3.1",
"git-repo-info": "^2.1.1",
"husky": "^7.0.4",
"jest": "^27.5.1",
"lint-staged": "^12.3.8",
"node-notifier": "^10.0.1",
"prettier": "^2.6.2",
"rollup": "^2.70.2",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-filesize": "^9.1.2",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.31.2",
"ts-jest": "^27.1.4",
"typescript": "^4.6.3"
},
"peerDependencies": {
"react": "^18.0.0",
"react-dom": "^18.0.0"
},
"lint-staged": {
"*.{ts,tsx}": [
"prettier --write",
"eslint --fix --config .eslintrc.precommit.js"
]
},
"dependencies": {
"focus-trap-react": "^8.9.2",
"react-spring": "^9.4.5-beta.0"
}
}