-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.03 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 2.03 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
{
"name": "@chimplanet/ui",
"version": "1.1.2",
"main": "./build/index.js",
"module": "./build/index.js",
"types": "./build/index.d.ts",
"repository": "https://github.com/ChimPlanet/chimplanet-ui.git",
"license": "MIT",
"private": false,
"type": "module",
"scripts": {
"build": "yarn build:js && yarn build:ts",
"build:js": "babel src --out-dir build --extensions \".ts,.tsx\" --source-maps inline --copy-files",
"build:ts": "npx tsc --emitDeclarationOnly",
"start": "yarn build && node --experimental-specifier-resolution=node build/index.js",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"exports": {
".": {
"import": "./build/index.js",
"types": "./build/index.d.ts",
"default": "./build/index.js"
},
"./icons": {
"import": "./build/icons/index.js",
"types": "./build/icons/index.d.ts",
"default": "./build/icons/index.js"
}
},
"typesVersions": {
"*": {
"icons": [
"./build/icons/index.d.ts"
]
}
},
"dependencies": {
"prop-types": "^15.8.1",
"react": "^18.2.0",
"react-beautiful-dnd": "^13.1.1",
"react-feather": "^2.0.10",
"react-router-dom": "^6.10.0",
"styled-components": "^5.3.9",
"swiper": "^9.3.2"
},
"devDependencies": {
"@babel/cli": "^7.21.0",
"@babel/core": "^7.21.4",
"@babel/preset-env": "^7.21.4",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.21.4",
"@storybook/addon-essentials": "^7.0.17",
"@storybook/addon-interactions": "^7.0.17",
"@storybook/addon-links": "^7.0.17",
"@storybook/blocks": "^7.0.17",
"@storybook/react": "^7.0.17",
"@storybook/react-vite": "^7.0.17",
"@storybook/testing-library": "^0.0.14-next.2",
"@types/react-beautiful-dnd": "^13.1.4",
"@types/styled-components": "^5.1.26",
"babel-plugin-module-resolver": "^5.0.0",
"react-dom": "^18.2.0",
"storybook": "^7.0.17",
"typescript": "^5.0.4",
"vite": "^4.3.8"
},
"files": [
"build"
]
}