-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
78 lines (78 loc) · 2.41 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
{
"name": "x-world-map",
"private": true,
"version": "0.1.0",
"description": "A World Map visualization of remote workers, events and more...",
"author": {
"name": "Bernardo Dias",
"email": "[email protected]",
"url": "http://bernardodiasdacruz.com/"
},
"license": "MIT",
"homepage": "https://github.com/bernardodiasc/x-world-map#readme",
"repository": "github:bernardodiasc/x-world-map",
"scripts": {
"develop": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"type-check": "tsc --pretty --noEmit",
"test": "jest",
"validate": "yarn lint && yarn type-check && yarn test",
"gen": "node dev/generator/generator.js",
"prepare": "husky install",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook -o ./public/docs"
},
"dependencies": {
"@googlemaps/markerclusterer": "^1.0.27",
"axios": "^0.26.1",
"countries-and-timezones": "^3.3.0",
"date-fns": "^2.28.0",
"google-maps-react": "^2.0.6",
"json-loader": "^0.5.7",
"json-schema-faker": "^0.5.0-rcv.42",
"leaflet": "^1.7.1",
"lodash.size": "^4.2.0",
"markdown-to-jsx": "^7.1.7",
"next": "12.0.10",
"next-auth": "^4.3.1",
"qs": "^6.10.3",
"react": "17.0.2",
"react-copy-to-clipboard": "^5.0.4",
"react-dom": "17.0.2",
"react-draggable": "^4.4.4",
"react-dropzone": "^12.0.4",
"react-hook-form": "^7.29.0",
"react-leaflet": "^3.2.5",
"react-select": "^5.2.2",
"sharp": "^0.30.4",
"swr": "^1.2.2"
},
"devDependencies": {
"@babel/core": "^7.17.9",
"@storybook/addon-actions": "^6.4.22",
"@storybook/addon-essentials": "^6.4.22",
"@storybook/addon-interactions": "^6.4.22",
"@storybook/addon-links": "^6.4.22",
"@storybook/builder-webpack5": "^6.4.22",
"@storybook/jest": "^0.0.10",
"@storybook/manager-webpack5": "^6.4.22",
"@storybook/react": "^6.4.22",
"@storybook/testing-library": "^0.0.9",
"@typescript-eslint/eslint-plugin": "^5.18.0",
"@typescript-eslint/parser": "^5.18.0",
"babel-loader": "^8.2.4",
"ejs": "^3.1.6",
"eslint": "8.12.0",
"eslint-config-next": "12.1.4",
"eslint-plugin-jest": "^26.1.3",
"eslint-plugin-react": "^7.29.4",
"eslint-plugin-storybook": "^0.5.8",
"husky": "^7.0.4",
"inquirer": "^8.2.2",
"jest": "^27.5.1",
"typescript": "^4.6.3",
"webpack": "^5.72.0"
}
}