-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.85 KB
/
package.json
File metadata and controls
88 lines (88 loc) · 2.85 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "@joaopmo/react-paper",
"version": "3.4.2",
"repository": {
"type": "git",
"url": "git+https://github.com/joaopmo/react-paper.git"
},
"description": "React Components for creating layouts that simulate paper sheets.",
"type": "module",
"files": [
"dist"
],
"main": "./dist/index.cjs",
"types": "./dist/index.d.ts",
"module": "./dist/index.es.js",
"exports": {
"./package.json": "./package.json",
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.es.js",
"require": "./dist/index.cjs"
},
"./css/base": "./dist/styles/base.css",
"./css/print": "./dist/styles/print.css"
},
"scripts": {
"dev": "vite",
"build": "pnpm build:scripts && pnpm build:types && pnpm build:styles",
"build:scripts": "vite build",
"build:types": "tsc --emitDeclarationOnly -p tsconfig.prod.json",
"build:styles": "pnpm build:styles:base && pnpm build:styles:print",
"build:styles:base": "postcss --use autoprefixer -o dist/styles/base.css src/styles/base.css",
"build:styles:print": "postcss --use autoprefixer -o dist/styles/print.css src/styles/print.css",
"preview": "vite preview",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"prepublishOnly": "pnpm build"
},
"peerDependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@joaopmo/react-paper": "workspace:*",
"@storybook/addon-essentials": "^7.0.27",
"@storybook/addon-interactions": "^7.0.27",
"@storybook/addon-links": "^7.0.27",
"@storybook/blocks": "^7.0.27",
"@storybook/manager-api": "^7.0.27",
"@storybook/react": "^7.0.27",
"@storybook/react-vite": "^7.0.27",
"@storybook/testing-library": "^0.2.0",
"@storybook/theming": "^7.0.27",
"@types/react": "^18.2.15",
"@types/react-dom": "^18.2.7",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@vitejs/plugin-react": "^4.0.3",
"autoprefixer": "^10.4.14",
"chromatic": "^6.19.9",
"eslint": "^8.45.0",
"eslint-config-prettier": "^8.8.0",
"eslint-config-standard-with-typescript": "^36.1.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-n": "^16.0.1",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"lorem-ipsum": "^2.0.8",
"postcss": "^8.4.26",
"postcss-cli": "^10.1.0",
"prettier": "^3.0.0",
"prop-types": "^15.8.1",
"storybook": "^7.0.27",
"typescript": "^5.1.6",
"vite": "^4.4.4"
},
"dependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"bugs": {
"url": "https://github.com/joaopmo/react-paper/issues"
},
"readme": "ERROR: No README data found!",
"homepage": "https://github.com/joaopmo/react-paper#readme",
"_id": "@joaopmo/react-paper@3.2.0"
}