forked from ChibiBlasphem/poc-react-library
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.76 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
{
"name": "@toucan-private-local/component-lib",
"version": "1.0.0",
"files": [
"dist"
],
"types": "./dist/index.d.ts",
"main": "./dist/toucan-component-lib.cjs.js",
"module": "./dist/toucan-component-lib.es.js",
"exports": {
".": {
"import": "./dist/toucan-component-lib.es.js",
"require": "./dist/toucan-component-lib.cjs.js"
}
},
"scripts": {
"dev": "vite",
"build": "tsc --noEmit && vite build && tsc --emitDeclarationOnly",
"preview": "vite preview",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"test": "vitest"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.1.1",
"@fortawesome/free-solid-svg-icons": "^6.1.1",
"@fortawesome/react-fontawesome": "^0.1.18",
"styled-components": "^5.3.5"
},
"peerDependencies": {
"react": ">17",
"react-dom": ">17"
},
"devDependencies": {
"@babel/core": "^7.18.2",
"@storybook/addon-actions": "^6.5.6",
"@storybook/addon-essentials": "^6.5.6",
"@storybook/addon-interactions": "^6.5.6",
"@storybook/addon-links": "^6.5.6",
"@storybook/builder-vite": "^0.1.36",
"@storybook/client-api": "^6.5.9",
"@storybook/react": "^6.5.6",
"@storybook/testing-library": "^0.0.11",
"@testing-library/react": "^13.3.0",
"@testing-library/user-event": "^14.2.0",
"@types/react": "^18.0.0",
"@types/react-dom": "^18.0.0",
"@types/styled-components": "^5.1.25",
"@vitejs/plugin-react": "^1.3.0",
"babel-loader": "^8.2.5",
"jsdom": "^19.0.0",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"typescript": "^4.6.3",
"verdaccio": "^5.11.0",
"vite": "^2.9.9",
"vitest": "^0.15.1"
},
"publishConfig": {
"registry": "http://localhost:4873"
}
}