-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.4 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.4 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
{
"name": "react-mxmaps",
"version": "1.0.0",
"description": "Tale of a React challenge, a map of Mexico with a few hundred markers",
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build && react-snapshot",
"serve": "serve -s build",
"test": "react-scripts test --env=jsdom",
"deploy": "yarn build && firebase deploy",
"analyze": "yarn build && source-map-explorer build/static/js/main.*",
"format": "prettier --single-quote --no-bracket-spacing --no-semi --write 'src/**/*.js'",
"parse": "node -r dotenv/config src/parser/index.js dotenv_config_path=./.env.local"
},
"reactSnapshot": {
"include": [
"/"
],
"exclude": [
"/**"
]
},
"repository": {
"type": "git",
"url": "https://github.com/anthony2025/react-mxmaps.git"
},
"author": "Anthony Ascencio <anthony2025@gmail.com> (https://github.com/anthony2025)",
"homepage": "https://mxmaps.anthonyascencio.me",
"devDependencies": {
"@google/maps": "^0.4.3",
"dotenv": "^4.0.0",
"firebase-tools": "^3.9.1",
"prettier": "^1.5.3",
"raven-js": "^3.17.0",
"react-scripts": "1.0.10",
"react-snapshot": "^1.1.0",
"serve": "^6.0.3",
"source-map-explorer": "^1.4.0"
},
"dependencies": {
"google-map-react": "^0.24.0",
"prop-types": "^15.5.10",
"react": "^15.6.1",
"react-dom": "^15.6.1",
"styled-components": "^2.1.1"
}
}