-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
125 lines (125 loc) · 3.57 KB
/
package.json
File metadata and controls
125 lines (125 loc) · 3.57 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
121
122
123
124
125
{
"name": "google-maps-react",
"homepage": "https://morewings.github.io/react-library-template/",
"author": {
"name": "Jacob Galati",
"email": "galati.jacob@gmail.com",
"url": "https://github.com/JacobGalati"
},
"repository": {
"type": "git",
"url": "https://github.com/JacobGalati/google-maps-react.git"
},
"private": false,
"version": "0.1.0",
"type": "module",
"files": [
"dist"
],
"main": "./dist/index.umd.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"sideEffects": false,
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.umd.cjs"
}
},
"keywords": [
"react",
"google",
"google maps",
"google-maps",
"googlemap",
"map",
"maps",
"typescript"
],
"description": "Missing React, typescript NPM library creation template",
"scripts": {
"dev": "vite",
"clean:lib": "rm -rf dist",
"build:lib": "vite build",
"build": "run-s clean:lib build:lib",
"lint:code": "eslint src/** --report-unused-disable-directives",
"fix:code": "run-s 'lint:code --fix'",
"lint:types": "tsc --pretty --noEmit",
"lint:style": "stylelint ./src/**/*.css",
"fix:style": "run-s 'lint:style --fix'",
"test": "jest",
"preview": "vite preview",
"start:docs": "storybook dev -p 6006",
"build:docs": "storybook build",
"generate:component": "npx generate-react-cli component",
"prepare": "is-ci || husky",
"lint-staged": "lint-staged"
},
"peerDependencies": {
"react": ">=18.2.0",
"react-dom": ">=18.2.0"
},
"dependencies": {
"@googlemaps/js-api-loader": "^1.16.6",
"lodash": "^4.17.21"
},
"devDependencies": {
"@eslint/compat": "1.0.3",
"@eslint/eslintrc": "3.1.0",
"@eslint/js": "9.4.0",
"@storybook/addon-essentials": "8.1.5",
"@storybook/addon-interactions": "8.1.5",
"@storybook/addon-links": "8.1.5",
"@storybook/blocks": "8.1.5",
"@storybook/builder-vite": "8.1.5",
"@storybook/react": "8.1.5",
"@storybook/react-vite": "8.1.5",
"@storybook/test": "8.1.5",
"@storybook/types": "8.1.5",
"@testing-library/jest-dom": "6.4.5",
"@testing-library/react": "15.0.7",
"@types/jest": "29.5.12",
"@types/lodash": "4.17.4",
"@types/react": "18.3.3",
"@types/react-dom": "18.3.0",
"@typescript-eslint/eslint-plugin": "7.11.0",
"@typescript-eslint/parser": "7.11.0",
"@vitejs/plugin-react": "4.3.0",
"@yelo/rollup-node-external": "1.0.1",
"alias-hq": "6.2.3",
"eslint": "9.4.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-prettier": "5.1.3",
"eslint-plugin-react": "7.34.2",
"eslint-plugin-react-hooks": "4.6.2",
"eslint-plugin-react-refresh": "0.4.7",
"eslint-plugin-ssr-friendly": "1.3.0",
"eslint-plugin-storybook": "0.8.0",
"generate-react-cli": "8.4.6",
"husky": "9.0.11",
"identity-obj-proxy": "3.0.0",
"is-ci": "3.0.1",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"lint-staged": "15.2.5",
"npm-run-all2": "6.2.0",
"postcss": "8.4.38",
"postcss-preset-env": "9.5.14",
"prettier": "3.3.0",
"react": "18.3.1",
"react-docgen-typescript": "2.2.2",
"react-dom": "18.3.1",
"storybook": "8.1.5",
"stylelint": "16.6.1",
"stylelint-config-standard": "36.0.0",
"stylelint-order": "6.0.4",
"stylelint-prettier": "5.0.0",
"ts-jest": "29.1.4",
"ts-node": "10.9.2",
"typescript": "5.4.5",
"typescript-eslint": "7.11.0",
"vite": "5.2.12",
"vite-plugin-dts": "3.9.1"
}
}