-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.64 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 2.64 KB
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
{
"main": "./lib/cjs/index.js",
"module": "./lib/esm/index.js",
"types": "./lib/esm/index.d.ts",
"name": "@chiptopher/onion",
"repository": "git://github.com/chiptopher/onion.git",
"version": "0.2.15",
"license": "MIT",
"files": [
"lib"
],
"devDependencies": {
"@babel/core": "^7.18.9",
"@rollup/plugin-commonjs": "^25.0.0",
"@rollup/plugin-node-resolve": "^15.1.0",
"@rollup/plugin-terser": "^0.4.3",
"@rollup/plugin-typescript": "^11.1.1",
"@storybook/addon-essentials": "^7.5.1",
"@storybook/addon-interactions": "^7.0.18",
"@storybook/addon-links": "^7.0.18",
"@storybook/addon-postcss": "^2.0.0",
"@storybook/addon-styling": "^1.3.4",
"@storybook/blocks": "^7.0.18",
"@storybook/react": "^7.0.18",
"@storybook/react-vite": "^7.5.1",
"@storybook/testing-library": "^0.0.14-next.2",
"@types/jest": "^29.2.6",
"@types/react": "^18.0.15",
"@typescript-eslint/eslint-plugin": "^5.30.7",
"babel-loader": "^8.2.5",
"eslint": "^8.20.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.30.1",
"eslint-plugin-storybook": "^0.6.12",
"eslint-plugin-typescript-sort-keys": "^2.1.0",
"eslint-plugin-unused-imports": "^2.0.0",
"husky": "^8.0.1",
"jest": "^29.3.1",
"jest-css-modules-transform": "^4.4.2",
"lint-staged": "^13.0.3",
"postcss": "^8.4.27",
"postcss-each": "^1.1.0",
"postcss-import": "^15.1.0",
"prop-types": "^15.8.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rollup": "^3.24.0",
"rollup-plugin-dts": "^5.3.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-postcss": "^4.0.2",
"storybook": "^7.5.1",
"ts-jest": "^29.0.5",
"typescript": "^4.7.4",
"typescript-eslint-parser": "^22.0.0"
},
"scripts": {
"build": "rollup -c --bundleConfigAsCjs",
"build:storybook": "npm run build-storybook",
"lint": "eslint . --ext .ts,.tsx,.js,json",
"lint:fix": "eslint . --ext .ts,.tsx,.js,json --fix",
"deploy": "npm run build && npm publish",
"test": "jest .",
"prepare": "husky install",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.1.2",
"@fortawesome/free-regular-svg-icons": "^6.1.2",
"@fortawesome/free-solid-svg-icons": "^6.1.2",
"@fortawesome/react-fontawesome": "^0.2.0",
"classnames": "^2.3.2"
},
"lint-staged": {
"*.{ts,tsx,js}": "eslint --fix"
},
"eslintConfig": {
"extends": [
"plugin:storybook/recommended"
]
}
}