-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 1.97 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
{
"name": "burger-menu",
"version": "2.0.0",
"description": "A modern, flexible menu component that provides navigation for pages and features.",
"main": "lib/index.js",
"module": "lib/es/index.js",
"style": "lib/index.css",
"files": [
"lib"
],
"scripts": {
"start": "rollup -c rollup.config.js --watch",
"test": "jest --coverage",
"build": "rollup -c rollup.config.js",
"bootstrap": "lerna bootstrap"
},
"keywords": [
"react",
"reactjs",
"hooks",
"burger",
"menu",
"react-component",
"typescript"
],
"author": "perezpz",
"repository": {
"type": "git",
"url": "https://github.com/perezpz/burger-menu"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/perezpz/burger-menu/issues"
},
"devDependencies": {
"@babel/core": "^7.16.0",
"@babel/plugin-transform-runtime": "^7.16.4",
"@babel/preset-env": "^7.16.4",
"@babel/preset-react": "^7.16.0",
"@babel/preset-typescript": "^7.16.0",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-image": "^2.1.1",
"@rollup/plugin-node-resolve": "^13.0.6",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.3.0",
"@types/jest": "^27.0.3",
"@types/react": "^17.0.34",
"autoprefixer": "^10.4.0",
"babel-jest": "^27.3.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.27.0",
"jest": "^27.3.1",
"lerna": "^4.0.0",
"postcss": "^8.3.11",
"react-dom": "^18.2.0",
"rollup-plugin-filesize": "^9.1.1",
"rollup-plugin-local-resolve": "^1.0.7",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-scss": "^3.0.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.30.0",
"sass": "^1.43.4",
"ts-jest": "^27.0.7",
"tslib": "^2.3.1",
"typescript": "^4.4.4"
},
"dependencies": {
"classnames": "^2.3.1",
"framer-motion": "^6.5.1",
"react": "^18.2.0"
}
}