-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
74 lines (74 loc) · 2.08 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
{
"name": "figma-react-ui-kit",
"version": "0.2.7",
"description": "Contains some Figma styled components",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build-storybook": "build-storybook",
"start-storybook": "start-storybook",
"build": "rm -rf lib; NODE_ENV=production webpack --mode=production",
"dev": "NODE_ENV=development webpack serve",
"prepare": "npm run build"
},
"keywords": [
"Figma",
"UI",
"React"
],
"repository": "https://github.com/LiamMartens/figma-react-ui-kit",
"author": "Liam Martens <[email protected]>",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.17.10",
"@floating-ui/react-dom": "^0.7.0",
"@storybook/addon-actions": "^6.4.22",
"@storybook/addon-essentials": "^6.4.22",
"@storybook/addon-interactions": "^6.4.22",
"@storybook/addon-links": "^6.4.22",
"@storybook/builder-webpack5": "^6.4.22",
"@storybook/manager-webpack5": "^6.4.22",
"@storybook/react": "^6.4.22",
"@storybook/testing-library": "^0.0.11",
"@types/react": "^17",
"@types/react-dom": "^17",
"@typescript-eslint/eslint-plugin": "^5.13.0",
"@typescript-eslint/parser": "^5.0.0",
"babel-loader": "^8.2.5",
"css-loader": "^6",
"eslint": "^8.15.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"mini-css-extract-plugin": "^2.6.0",
"react": "^17",
"react-dom": "^17",
"react-portal": "^4.2.0",
"sass": "^1.51.0",
"sass-loader": "^12",
"sass-resources-loader": "^2.2.5",
"style-loader": "^3",
"ts-loader": "^9.0.0",
"typescript": "^4.0.0",
"webpack": "^5",
"webpack-cli": "^4.9",
"webpack-fix-style-only-entries": "^0.6.1"
},
"dependencies": {
"classnames": "^2.3.1"
},
"peerDependencies": {
"react": "^16||^17",
"react-dom": "^16||^17",
"react-portal": "^4.2.0",
"@floating-ui/react-dom": "^0.7.0"
},
"resolutions": {
"@types/react": "^17",
"@types/react-dom": "^17",
"react": "^17",
"react-dom": "^17"
},
"files": [
"lib"
]
}