-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
129 lines (129 loc) · 4.07 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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
{
"name": "react-float-menu",
"version": "0.4.7",
"author": {
"name": "Prabhu Murthy",
"email": "prabhu.m.murthy@gmail.com"
},
"homepage": "https://github.com/prabhuignoto/react-float-menu",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/prabhuignoto/react-float-menu"
},
"description": "Smart draggable floating menu component for React",
"keywords": [
"react",
"float",
"menu",
"smart menu",
"floating menu",
"draggable menu"
],
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"cache": "cache/.npm"
},
"scripts": {
"dev": "vite",
"build:vite": "tsc && vite build",
"preview": "vite preview",
"build:dev": "webpack --config webpack.config.js --mode development",
"build:prod": "webpack --config webpack.config.js --mode production",
"webpack:dev": "webpack --config webpack.config.js --mode development",
"lint:js": "eslint src/**/*.tsx",
"lint:js-fix": "eslint src/**/*.tsx --fix",
"lint:css": "stylelint src/**/*.scss",
"lint:css-fix": "stylelint --fix src/**/*.scss",
"lint:all": "pnpm lint:js && pnpm lint:css",
"format": "prettier --write src/**/*.{tsx,scss}",
"snyk:monitor": "pnpm dlx snyk monitor",
"snyk:test": "pnpm dlx snyk test",
"test": "pnpm vitest run -c ./vitest.config.ts",
"cypress:open": "pnpm dlx cypress open",
"cypress:quiet": "pnpm exec cypress run --headless --quiet --browser chrome",
"test:dev": "vitest watch -c ./vitest.config.ts --silent",
"test:coverage": "vitest run -c ./vitest.config.ts --coverage"
},
"browserslist": [
"last 2 versions",
"not op_mini all",
"not ie <= 11"
],
"dependencies": {
"classnames": "^2.3.2",
"nanoid": "^4.0.2",
"react": "^18.0.0",
"react-dom": "^18.0.0"
},
"peerDependencies": {
"react": "^17.0.0",
"react-dom": "^17.0.0"
},
"files": [
"dist"
],
"main": "dist/react-float-menu.js",
"devDependencies": {
"@babel/core": "^7.22.9",
"@babel/plugin-transform-runtime": "^7.22.9",
"@babel/preset-env": "^7.22.9",
"@babel/preset-react": "^7.22.5",
"@babel/preset-typescript": "^7.22.5",
"@babel/runtime": "^7.22.6",
"@testing-library/dom": "^9.3.1",
"@testing-library/jest-dom": "^5.17.0",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.4.3",
"@types/jest": "^29.5.3",
"@types/node": "^20.4.2",
"@types/react": "^18.2.15",
"@types/react-dom": "^18.2.7",
"@types/testing-library__jest-dom": "^5.14.8",
"@typescript-eslint/eslint-plugin": "^6.1.0",
"@typescript-eslint/parser": "^6.1.0",
"@vitejs/plugin-react": "^4.0.3",
"@vitest/coverage-v8": "^0.33.0",
"autoprefixer": "^10.4.14",
"babel-loader": "^9.1.3",
"babel-plugin-remove-attribute": "^1.0.0",
"c8": "^8.0.0",
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^6.8.1",
"cypress": "^12.17.1",
"eslint": "^8.45.0",
"eslint-config-prettier": "^8.8.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-cypress": "^2.13.3",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^16.0.1",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-sort-keys-fix": "^1.1.2",
"fork-ts-checker-webpack-plugin": "^8.0.0",
"husky": "^8.0.3",
"jsdom": "^22.1.0",
"lint-staged": "^13.2.3",
"mini-css-extract-plugin": "^2.7.6",
"postcss": "^8.4.26",
"postcss-loader": "^7.3.3",
"postcss-preset-env": "^9.0.0",
"sass": "^1.63.6",
"sass-loader": "^13.3.2",
"style-loader": "^3.3.3",
"stylelint": "^15.10.1",
"stylelint-config-prettier": "^9.0.5",
"stylelint-config-standard": "^34.0.0",
"stylelint-config-standard-scss": "^10.0.0",
"terser-webpack-plugin": "^5.3.9",
"ts-loader": "^9.4.4",
"typescript": "^5.1.6",
"typescript-plugin-css-modules": "^5.0.1",
"vite": "^4.4.4",
"vitest": "^0.33.0",
"webpack": "^5.88.2",
"webpack-bundle-analyzer": "^4.9.0",
"webpack-cli": "^5.1.4",
"webpack-node-externals": "^3.0.0"
}
}