-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
120 lines (120 loc) · 3 KB
/
Copy pathpackage.json
File metadata and controls
120 lines (120 loc) · 3 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
{
"name": "aww-vzc",
"version": "0.1.0",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"workspaces": [
"package/*",
"package/core/*",
"package/components/*"
],
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.mjs"
},
"require": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
}
},
"private": true,
"dependencies": {
"@aww-vzc/icons-data": "workspace:^",
"@aww-vzc/react": "workspace:^",
"@aww-vzc/style": "workspace:^",
"@aww-vzc/utils": "workspace:^",
"@headlessui/react": "^1.7.18",
"d3": "^7.8.5",
"framer-motion": "^10.16.4",
"jszip": "^3.10.1",
"md5": "^2.3.0",
"re-resizable": "^6.9.11",
"react": "^18",
"react-dom": "^18",
"react-icons": "^4.11.0",
"react-syntax-highlighter": "^15.5.0",
"tailwindcss": "^3",
"typescript": "^4.9.5"
},
"peerDependencies": {
"react": "^18",
"react-dom": "^18",
"tailwindcss": "^3"
},
"scripts": {
"start": "vite",
"build": "tsc && vite build",
"serve": "vite preview",
"test": "vitest",
"test:coverage": "vitest run --coverage --watch=false"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"packageManager": "yarn@3.6.4",
"devDependencies": {
"@aww-vzc/types": "workspace:^",
"@babel/cli": "^7.23.0",
"@babel/core": "^7.23.2",
"@babel/preset-react": "^7.22.15",
"@chakra-ui/react": "^2.8.1",
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@types/babel__core": "^7",
"@types/d3": "^7",
"@types/eslint": "^8",
"@types/file-saver": "^2",
"@types/md5": "^2",
"@types/node": "^20.10.4",
"@types/react": "^18.2.25",
"@types/react-dom": "^18.2.11",
"@types/redux-logger": "^3",
"@typescript-eslint/eslint-plugin": "latest",
"@typescript-eslint/parser": "latest",
"@vitejs/plugin-react": "^4.1.0",
"@vitejs/plugin-react-refresh": "^1.3.6",
"@vitejs/plugin-react-swc": "^3.4.0",
"@vitest/coverage-v8": "^0.34.6",
"autoprefixer": "^10.4.16",
"axios": "^1.5.1",
"clean-package": "^2.2.0",
"eslint": "^8.51.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-react": "latest",
"file-saver": "^2.0.5",
"jsdom": "^22.1.0",
"lerna": "^7.4.2",
"path": "^0.12.7",
"postcss": "^8",
"react-hook-form": "^7.47.0",
"react-query": "^3.39.3",
"redux-logger": "^3.0.6",
"type-fest": "^4.8.3",
"vite": "^4.4.11",
"vite-plugin-dts": "^3.6.0",
"vite-plugin-eslint": "^1.8.1",
"vite-plugin-svgr": "^4.1.0",
"vite-tsconfig-paths": "^4.2.1",
"vitest": "^0.34.6",
"yarn": "^1.22.19"
}
}