-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
39 lines (39 loc) · 1.17 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
{
"name": "geolocation-map",
"version": "1.0.0",
"description": "Plug-in map of geolocation data",
"main": "dist/index.es.js",
"typings": "dist/index.d.ts",
"files": [
"dist"
],
"author": "",
"license": "ISC",
"scripts": {
"build": "npx vite build -c vite.config.lib.ts && tsc --emitDeclarationOnly --outDir dist && rm -rf ./dist/*.ts",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "tsc --noEmit && npm run lint:ts && npm run prettier",
"prettier": "npx --no-install prettier -c src",
"lint:ts": "npx eslint src",
"serve": "vite"
},
"dependencies": {
"google-map-react": "^2.1.10"
},
"devDependencies": {
"eslint": "^7.25.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-airbnb-typescript": "^14.0.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-mui-unused-classes": "^1.0.3",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.23.1",
"eslint-plugin-react-hooks": "^4.2.0",
"jest": "^27.0.3",
"prettier": "=2.3.0",
"vite": "^2.5.8",
"@gliff-ai/style": "^1.1.0"
}
}