-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
107 lines (107 loc) · 3.38 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
{
"name": "@aleph-front/core",
"version": "1.27.2",
"description": "",
"author": "",
"license": "ISC",
"scripts": {
"build": "npm run rollup",
"build-storybook": "storybook build",
"lint": "eslint ./src --ext .ts,.tsx",
"lint:fix": "eslint ./src --fix --ext .ts,.tsx",
"prettier": "prettier --write ./src/**/*.{ts,tsx}",
"rollup": "rollup -c",
"start": "npm run storybook",
"storybook": "storybook dev -p 6006",
"test": "echo \"Error: no test specified\" && exit 1",
"prepare": "husky install"
},
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"type": "module",
"publishConfig": {
"access": "public"
},
"files": [
"dist"
],
"babelMacros": {
"twin": {
"preset": "styled-components"
}
},
"dependencies": {
"@monaco-editor/react": "^4.4.6",
"react-infinite-scroll-hook": "^4.1.1",
"transition-hook": "^1.5.2"
},
"devDependencies": {
"@babel/core": "^7.24.5",
"@babel/preset-env": "^7.24.5",
"@babel/preset-react": "^7.24.1",
"@babel/preset-typescript": "^7.24.1",
"@fortawesome/fontawesome-svg-core": "^6.3.0",
"@fortawesome/free-brands-svg-icons": "^6.3.0",
"@fortawesome/pro-regular-svg-icons": "^6.3.0",
"@fortawesome/react-fontawesome": "^0.1.18",
"@fortawesome/sharp-solid-svg-icons": "^6.3.0",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-commonjs": "^22.0.0",
"@rollup/plugin-node-resolve": "^13.3.0",
"@rollup/plugin-terser": "^0.4.4",
"@storybook/addon-actions": "^7.0.7",
"@storybook/addon-essentials": "^7.0.7",
"@storybook/addon-interactions": "^7.0.7",
"@storybook/addon-links": "^7.0.7",
"@storybook/addon-mdx-gfm": "^7.0.7",
"@storybook/react": "^7.0.7",
"@storybook/react-webpack5": "^7.0.7",
"@storybook/testing-library": "^0.1.0",
"@types/react": "^18.0.9",
"@types/react-dom": "^18.0.11",
"@types/react-transition-group": "^4.4.6",
"@types/styled-components": "^5.1.25",
"@typescript-eslint/eslint-plugin": "^5.52.0",
"@typescript-eslint/parser": "^5.52.0",
"babel-loader": "^9.1.3",
"babel-plugin-macros": "^3.1.0",
"babel-plugin-styled-components": "^2.1.4",
"babel-plugin-twin": "^1.1.0",
"eslint": "^8.34.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-storybook": "^0.6.11",
"husky": "^8.0.3",
"lottie-react": "^2.4.0",
"polished": "^4.2.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-is": "^18.2.0",
"rollup": "^2.75.1",
"rollup-plugin-dts": "^4.2.2",
"rollup-plugin-esbuild": "^6.1.1",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-terser": "^7.0.2",
"storybook": "^7.0.7",
"storybook-dark-mode": "^3.0.0",
"styled-components": "^5.3.10",
"tailwindcss": "^3.3.1",
"twin.macro": "^3.3.1",
"typescript": "^5.4.5"
},
"peerDependencies": {
"@fortawesome/fontawesome-svg-core": "^6.x",
"@fortawesome/free-brands-svg-icons": "^6.x",
"@fortawesome/pro-regular-svg-icons": "^6.x",
"@fortawesome/react-fontawesome": "^0.1.x",
"@fortawesome/sharp-solid-svg-icons": "^6.x",
"lottie-react": "^2.x.x",
"react": "^18.x",
"react-dom": "^18.x",
"styled-components": "^5.x",
"twin.macro": "^3.x"
}
}