-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·110 lines (110 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
102
103
104
105
106
107
108
109
110
{
"name": "neo-react-semantic-ui-range",
"version": "0.3.6",
"description": "A modern Semantic/Fomantic UI Slider component for React",
"scripts": {
"rollup": "rollup -c",
"build": "del 'dist/*' && npm run rollup",
"lint": "eslint ./src/**/*.{ts,tsx,js}",
"upload": "npm run build && npm publish",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook -o docs-build"
},
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"author": "Ramiro Federico Lasorsa <[email protected]>",
"contributors": [
"JWare Solutions <[email protected]>"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/jware-solutions/neo-react-semantic-ui-range"
},
"keywords": [
"Slider",
"Range slider",
"Semantic-UI",
"Fomantic-UI"
],
"bugs": {
"url": "https://github.com/jware-solutions/neo-react-semantic-ui-range/issues"
},
"homepage": "https://jware-solutions.github.io/neo-react-semantic-ui-range/",
"dependencies": {
"@types/node": "^12.20.19",
"@types/react": "^17.0.39",
"@types/react-dom": "^17.0.9",
"del-cli": "^4.0.1",
"jsdoc": "^3.6.7",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-scripts": "4.0.3",
"semantic-ui-css": "^2.4.1",
"semantic-ui-react": "^2.1.2"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
],
"overrides": [
{
"files": [
"**/*.stories.*"
],
"rules": {
"import/no-anonymous-default-export": "off"
}
}
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@rollup/plugin-commonjs": "^21.0.3",
"@rollup/plugin-node-resolve": "^13.1.3",
"@rollup/plugin-typescript": "^8.3.1",
"@storybook/addon-actions": "^6.4.19",
"@storybook/addon-essentials": "^6.4.19",
"@storybook/addon-interactions": "^6.4.19",
"@storybook/addon-links": "^6.4.19",
"@storybook/api": "^6.4.19",
"@storybook/node-logger": "^6.4.19",
"@storybook/preset-create-react-app": "^3.2.0",
"@storybook/react": "^6.4.19",
"@storybook/testing-library": "^0.0.9",
"@typescript-eslint/eslint-plugin": "^5.5.0",
"@typescript-eslint/parser": "^5.5.0",
"copyfiles": "^2.4.1",
"eslint": "^7.32.0",
"eslint-config-standard": "^16.0.3",
"eslint-config-standard-jsdoc": "^9.3.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jsdoc": "^37.0.3",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.1",
"eslint-plugin-react": "^7.27.1",
"eslint-plugin-storybook": "^0.5.7",
"rollup": "^2.70.1",
"rollup-plugin-dts": "^4.2.0",
"rollup-plugin-scss": "^3.0.0",
"sass": "^1.49.11",
"tslib": "^2.3.1",
"typescript": "^4.6.3"
}
}