-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
101 lines (101 loc) · 3.03 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
95
96
97
98
99
100
101
{
"name": "@rsuite/responsive-nav",
"version": "5.0.2",
"description": "A responsive navigation component based on rsuite navigation enhancements",
"main": "lib",
"types": "lib/index.d.ts",
"scripts": {
"dev": "webpack serve --mode development --port 3100 --host 0.0.0.0 --progress",
"build": "npm run build:gulp && npm run build:types",
"build:gulp": "gulp build",
"build:types": "npx tsc --emitDeclarationOnly --outDir lib && npx tsc --emitDeclarationOnly --outDir es",
"docs": "rm -rf assets && NODE_ENV=production webpack",
"publish-docs": "node docs/gh-pages.js",
"lint": "eslint src *.js",
"test": "npm run lint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rsuite/responsive-nav.git"
},
"files": [
"CHANGELOG.md",
"lib",
"src",
"index.d.ts"
],
"keywords": [
"tab",
"nav",
"react",
"rsuite"
],
"author": "[email protected]",
"license": "MIT",
"bugs": {
"url": "https://github.com/rsuite/responsive-nav/issues"
},
"homepage": "https://github.com/rsuite/responsive-nav#readme",
"peerDependencies": {
"react": ">=16.6.0",
"react-dom": ">=16.6.0",
"rsuite": ">=4.0.0"
},
"devDependencies": {
"@babel/cli": "^7.12.8",
"@babel/core": "^7.12.9",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/plugin-proposal-export-default-from": "^7.12.1",
"@babel/plugin-proposal-export-namespace-from": "^7.12.1",
"@babel/plugin-proposal-optional-chaining": "^7.12.7",
"@babel/plugin-syntax-dynamic-import": "^7.0.0",
"@babel/plugin-transform-proto-to-assign": "^7.12.1",
"@babel/plugin-transform-runtime": "^7.12.1",
"@babel/polyfill": "^7.12.1",
"@babel/preset-env": "^7.12.7",
"@babel/preset-react": "^7.12.7",
"@babel/preset-typescript": "^7.12.7",
"@types/classnames": "^2.2.11",
"@types/prop-types": "^15.7.1",
"@types/react": "^16.14.2",
"@types/react-dom": "^16.9.10",
"@typescript-eslint/eslint-plugin": "^4.28.4",
"@typescript-eslint/parser": "^4.28.4",
"babel-loader": "^8.2.2",
"css-loader": "^6.2.0",
"del": "^6.0.0",
"eslint": "^7.30.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-babel": "^5.3.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"gh-pages": "^2.0.1",
"gulp": "^4.0.2",
"gulp-babel": "^8.0.0",
"html-webpack-plugin": "^5.3.2",
"less": "^4.1.1",
"less-loader": "^10.0.1",
"mini-css-extract-plugin": "^2.1.0",
"prettier": "^2.3.2",
"react": "^16.7.0",
"react-dom": "^16.7.0",
"rsuite": "^5.3.0",
"tinycolor2": "^1.4.2",
"typescript": "^4.3.5",
"webpack": "^5.46.0",
"webpack-cli": "^4.7.2",
"webpack-dev-server": "^3.11.2"
},
"dependencies": {
"@juggle/resize-observer": "^3.3.1",
"@rsuite/icons": "^1.0.0",
"prop-types": "^15.6.2"
},
"browserslist": [
"> 1%",
"last 2 versions",
"ie >= 10"
]
}