-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
101 lines (101 loc) · 2.8 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
{
"name": "periwinkle-ui",
"version": "0.0.29",
"private": false,
"repository": {
"type": "git",
"url": "https://github.com/Dok6n/periwinkle-ui"
},
"author": "Dok6n <[email protected]>",
"license": "MIT",
"description": "A blue-purple simple UI component for a React application.",
"type": "module",
"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"
}
},
"files": [
"/dist"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"serve-storybook": "http-server storybook-static",
"prod-storybook": "pnpm storybook:build && pnpm storybook:serve",
"dev": "vite",
"build": "tsc && vite build",
"prepare": "pnpm run build",
"preview": "vite preview"
},
"dependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0",
"@emotion/react": "^11.10.6"
},
"pnpm": {
"overrides": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
}
},
"engines": {
"node": ">=18.x"
},
"peerDependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0",
"@emotion/react": "^11.10.6"
},
"devDependencies": {
"@commitlint/cli": "14.1.0",
"@commitlint/config-conventional": "14.1.0",
"@storybook/addon-essentials": "^7.0.4",
"@storybook/addon-interactions": "^7.0.4",
"@storybook/addon-links": "^7.0.4",
"@storybook/blocks": "^7.0.4",
"@storybook/react": "^7.0.4",
"@storybook/react-vite": "^7.0.4",
"@storybook/testing-library": "^0.0.14-next.2",
"@swc/plugin-emotion": "^2.5.59",
"@testing-library/jest-dom": "^5.16.4",
"@types/jest": "^28.1.1",
"@types/node": "^18.0.0",
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"@types/testing-library__jest-dom": "5.14.5",
"@typescript-eslint/eslint-plugin": "5.30.3",
"@typescript-eslint/parser": "5.30.3",
"@vitejs/plugin-react-swc": "^3.3.0",
"dotenv": "16.0.3",
"eslint": "8.19.0",
"eslint-config-airbnb-typescript": "17.0.0",
"eslint-config-prettier": "8.5.0",
"eslint-config-react": "1.1.7",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-jsx-a11y": "6.6.0",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-react": "7.30.1",
"eslint-plugin-react-hooks": "4.6.0",
"eslint-plugin-testing-library": "5.5.1",
"husky": "^7.0.4",
"jest": "^28.1.1",
"jest-environment-jsdom": "^28.1.1",
"jest-watch-typeahead": "1.1.0",
"lint-staged": "11.2.6",
"vite-plugin-dts": "^2.2.0",
"prettier": "^2.7.1",
"prop-types": "^15.8.1",
"rimraf": "3.0.2",
"storybook": "^7.0.4",
"typescript": "^5.0.2",
"vite": "^4.2.0"
}
}