-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
87 lines (87 loc) · 2.68 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
{
"name": "@mir4a/resize-container-react",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"version": "1.0.2-pre3",
"description": "Resizeable component for wrapping any content",
"scripts": {
"rollup": "rollup -c --bundleConfigAsCjs",
"build": "NODE_ENV=production npm run rollup",
"test:ci": "jest --ci --coverage",
"test": "jest --watch",
"coverage": "jest --coverage",
"lint": "eslint --ext .js,.jsx,.ts,.tsx src",
"cypress:open": "cypress open",
"cypress:run": "cypress run",
"stories": "ladle serve",
"stories:build": "ladle build",
"e2e": "npm run stories & npm run cypress:run",
"prepare": "npm run build"
},
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"files": [
"dist"
],
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/mir4a/resize-container-react.git"
},
"keywords": [
"resize",
"component",
"react"
],
"author": "Miroslav Martynov <marty.mircha@gmail.com>",
"license": "ISC",
"bugs": {
"url": "https://github.com/mir4a/resize-container-react/issues"
},
"homepage": "https://github.com/mir4a/resize-container-react#readme",
"devDependencies": {
"@babel/core": "^7.19.6",
"@babel/preset-env": "^7.19.4",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.18.6",
"@ladle/react": "^2.4.5",
"@rollup/plugin-commonjs": "^23.0.2",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-typescript": "^9.0.2",
"@rollup/plugin-url": "^8.0.1",
"@svgr/rollup": "^6.5.1",
"@testing-library/dom": "^8.19.0",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^14.4.3",
"@types/jest": "^29.2.1",
"@types/react": "^18.0.24",
"@typescript-eslint/eslint-plugin": "^5.42.0",
"babel-jest": "^29.2.2",
"cypress": "^10.11.0",
"eslint": "^8.26.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard-with-typescript": "^23.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.4.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.31.10",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-testing-library": "^5.9.1",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.2.2",
"jest-environment-jsdom": "^29.2.2",
"rollup": "^3.2.3",
"rollup-plugin-dts": "^5.0.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-postcss": "^4.0.2",
"tslib": "^2.4.0",
"typescript": "^4.8.4",
"vite-plugin-svgr": "^2.2.2"
},
"peerDependencies": {
"react": "^18.2.0"
}
}