-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.66 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
{
"name": "@arconnect/components",
"version": "0.3.11",
"private": false,
"publishConfig": {
"access": "public"
},
"type": "module",
"scripts": {
"build": "tsc && vite build",
"storybook": "start-storybook -p 6006 -s assets",
"build-storybook": "build-storybook -s assets",
"serve-storybook": "serve storybook-static",
"fmt": "prettier . --write"
},
"files": [
"dist"
],
"main": "./dist/index.umd.js",
"module": "./dist/index.es.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.es.js",
"require": "./dist/index.umd.js"
}
},
"dependencies": {
"@iconicicons/react": "^1.5.1",
"axios": "^1.6.7",
"framer-motion": "^7.5.3",
"nanoid": "^4.0.1",
"uuid": "^9.0.1"
},
"devDependencies": {
"@babel/core": "^7.21.3",
"@storybook/addon-actions": "^6.5.16",
"@storybook/addon-essentials": "^6.5.16",
"@storybook/addon-interactions": "^6.5.16",
"@storybook/addon-links": "^6.5.16",
"@storybook/builder-vite": "^0.4.2",
"@storybook/react": "^6.5.16",
"@storybook/testing-library": "^0.0.13",
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"@types/styled-components": "^5.1.26",
"@types/uuid": "^9.0.8",
"@vitejs/plugin-react": "^3.1.0",
"babel-loader": "^8.3.0",
"prettier": "^2.8.4",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"styled-components": "^5.3.9",
"typescript": "^4.9.3",
"vite": "^4.2.0",
"vite-plugin-dts": "^2.1.0"
},
"peerDependencies": {
"react": "^16.8.0 || 17.x || 18.x",
"react-dom": "^16.8.0 || 17.x || 18.x",
"styled-components": "^5.0.0"
}
}