-
Notifications
You must be signed in to change notification settings - Fork 57
/
package.json
63 lines (63 loc) · 1.8 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
{
"name": "tsp-visualizer",
"private": true,
"description": "Visualizer for the traveling salesman problem",
"version": "0.1.0",
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.35",
"@fortawesome/free-brands-svg-icons": "^5.15.3",
"@fortawesome/free-solid-svg-icons": "^5.15.3",
"@fortawesome/react-fontawesome": "^0.1.14",
"@material-ui/core": "^4.11.3",
"@material-ui/styles": "^4.11.3",
"deck.gl": "^7.3.15",
"eslint-config-react-app": "^5.2.1",
"gatsby": "^2.32.12",
"gatsby-cli": "^2.19.2",
"gatsby-plugin-google-tagmanager": "^2.11.0",
"gatsby-plugin-manifest": "^2.12.1",
"gatsby-plugin-material-ui": "^2.1.6",
"gatsby-plugin-offline": "^3.10.2",
"gatsby-plugin-react-helmet": "^3.10.0",
"gatsby-remark-prismjs": "^3.13.0",
"gatsby-source-filesystem": "^2.11.1",
"gatsby-transformer-remark": "^2.16.1",
"gh-pages": "^2.2.0",
"prismjs": "^1.23.0",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-helmet": "^5.2.1",
"react-map-gl": "^5.3.12",
"react-redux": "^7.2.3",
"react-vis": "^1.11.7",
"redux": "^4.0.5",
"redux-thunk": "^2.3.0",
"reselect": "^4.0.0",
"typeface-roboto": "0.0.75",
"worker-loader": "^2.0.0"
},
"devDependencies": {
"eslint": "^6.8.0",
"eslint-plugin-react": "^7.23.2",
"prettier": "^1.19.1"
},
"keywords": [
"gatsby"
],
"license": "MIT",
"scripts": {
"build": "gatsby build",
"develop": "gatsby develop",
"format": "prettier --write \"**/*.{js,jsx,json,md}\"",
"start": "npm run develop",
"serve": "gatsby serve",
"clean": "gatsby clean"
},
"repository": {
"type": "git",
"url": "https://github.com/jhackshaw/tspvis"
},
"bugs": {
"url": "https://github.com/jhackshaw/tspvis/issues"
}
}