-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 1.96 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
{
"name": "panel-navigation",
"version": "1.0.1",
"description": "A component that provides navigation for desktop pages.",
"main": "lib/index.js",
"module": "lib/es/index.js",
"style": "lib/index.css",
"files": [
"lib"
],
"scripts": {
"start": "rollup -c rollup.config.js --watch --bundleConfigAsCjs",
"test": "jest --coverage",
"build": "rollup -c rollup.config.js --bundleConfigAsCjs",
"bootstrap": "lerna bootstrap"
},
"keywords": [
"navigation",
"react",
"panel"
],
"author": "perezpz",
"repository": {
"type": "git",
"url": "https://github.com/perezpz/panel-navigation"
},
"bugs": {
"url": "https://github.com/perezpz/panel-navigation/issues"
},
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.21.0",
"@babel/plugin-transform-runtime": "^7.19.6",
"@babel/preset-env": "^7.20.2",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.18.6",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-commonjs": "^24.0.1",
"@rollup/plugin-image": "^3.0.2",
"@rollup/plugin-json": "^6.0.0",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-terser": "^0.4.0",
"@rollup/plugin-typescript": "^11.0.0",
"@testing-library/react": "^14.0.0",
"@types/react-dom": "^18.0.10",
"@types/react-transition-group": "^4.4.5",
"autoprefixer": "^10.4.13",
"babel-jest": "^29.4.3",
"jest": "^29.4.3",
"jest-environment-jsdom": "^29.4.3",
"jest-transform-css": "^6.0.1",
"postcss": "^8.4.21",
"react-dom": "^18.2.0",
"rollup": "^3.17.3",
"rollup-plugin-filesize": "^9.1.2",
"rollup-plugin-local-resolve": "^1.0.7",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-scss": "^4.0.0",
"sass": "^1.57.1",
"tslib": "^2.5.0",
"typescript": "^4.9.4"
},
"dependencies": {
"classnames": "^2.3.2",
"gsap": "^3.11.4",
"react": "^18.2.0",
"react-transition-group": "^4.4.5"
}
}