generated from HarveyD/react-component-library
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
101 lines (101 loc) · 2.93 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": "srf-feathers",
"version": "1.7.7",
"main": "build/index.js",
"module": "build/index.esm.js",
"files": [
"build"
],
"types": "build/index.d.ts",
"description": "Shared Frontend Components between SRF web applications",
"scripts": {
"build": "rollup -c",
"build:watch": "rollup -c -w",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"generate": "node ./util/create-component",
"prepare": "npm run build",
"chromatic": "npx chromatic",
"format-only": "node_modules/.bin/prettier --write './src/**/*.{ts,tsx,scss}'",
"format-check": "node_modules/.bin/prettier --check './src/**/*.{ts,tsx,scss}'"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/mmz-srf/feathers.git"
},
"keywords": [
"React",
"Component",
"Library",
"Rollup",
"Typescript",
"Sass",
"Storybook"
],
"author": "SRF Online",
"license": "MIT",
"bugs": {
"url": "https://github.com/mmz-srf/feathers/issues"
},
"homepage": "https://github.com/mmz-srf/feathers#readme",
"peerDependencies": {
"react": ">=18.2.0",
"react-dom": ">=18.2.0"
},
"devDependencies": {
"@babel/plugin-proposal-private-property-in-object": "^7.21.11",
"@babel/preset-env": "^7.26.0",
"@babel/preset-react": "^7.25.9",
"@babel/preset-typescript": "^7.26.0",
"@chromatic-com/storybook": "^1.9.0",
"@rollup/plugin-commonjs": "^26.0.3",
"@rollup/plugin-eslint": "^9.0.5",
"@rollup/plugin-image": "^3.0.3",
"@rollup/plugin-node-resolve": "^15.3.0",
"@storybook/addon-essentials": "^8.3.6",
"@storybook/addon-styling-webpack": "^1.0.0",
"@storybook/addon-webpack5-compiler-babel": "^3.0.3",
"@storybook/react-webpack5": "^8.3.6",
"@svgr/rollup": "^8.1.0",
"@svgr/webpack": "^8.1.0",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"babel-loader": "^9.2.1",
"babel-preset-react-app": "^10.0.1",
"chromatic": "^11.16.1",
"classnames": "^2.5.1",
"css-loader": "^7.1.2",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-storybook": "^0.8.0",
"postcss-minify": "^1.1.0",
"prettier": "3.3.2",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"resolve-url-loader": "^5.0.0",
"rollup": "^4.24.2",
"rollup-plugin-copy": "^3.5.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-typescript2": "^0.36.0",
"sass": "^1.80.4",
"sass-loader": "^14.2.1",
"storybook": "^8.3.6",
"style-loader": "^4.0.0"
}
}