-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
70 lines (70 loc) · 1.77 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
{
"private": true,
"name": "google-globe-trends",
"version": "1.0.0",
"description": "Create beautiful and interactive Google Trends globe visualizations with ease.",
"license": "MIT",
"homepage": "https://google-globe-trends.netlify.com/",
"repository": "chrisrzhou/google-globe-trends",
"bugs": "https://github.com/chrisrzhou/google-globe-trends/issues",
"author": "Chris Zhou <[email protected]> (https://chrisrzhou.io)",
"keywords": [
"google",
"globe",
"trends",
"react-globe",
"react",
"three",
"threejs",
"webgl",
"visualization",
"interactive",
"earth",
"netlify",
"jamstack"
],
"scripts": {
"crawl": "npm run untrack; babel-node ./src/data/crawl.js",
"build": "npm run clean; npm run crawl; react-scripts build",
"clean": "rm -rf build",
"lint": "eslint --fix .",
"start": "react-scripts start",
"untrack": "git update-index --assume-unchanged ./src/data/data.json"
},
"dependencies": {
"@types/react": "^16.9.45",
"@types/react-dom": "^16.9.8",
"moment": "^2.24.0",
"node-sass": "^4.14.1",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-globe": "^5.0.2",
"react-scripts": "3.4.1",
"three": "^0.119.1",
"typescript": "^3.4.4"
},
"devDependencies": {
"@babel/core": "^7.11.1",
"@babel/node": "^7.10.5",
"@babel/preset-env": "^7.11.0",
"country-reverse-geocoding": "^0.2.2",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"google-trends-api": "^4.9.0",
"prettier": "^2.0.5"
},
"babel": {
"presets": [
"@babel/preset-env"
]
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}