-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·72 lines (72 loc) · 2.14 KB
/
package.json
File metadata and controls
executable file
·72 lines (72 loc) · 2.14 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
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
{
"name": "GeoTeste",
"version": "1.0.0",
"description": "Teste com mapa",
"main": "webpack.config.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "webpack-dev-server -d --env.platform=default --progress --hot",
"build": "cross-env webpack --hot --env.prod=true",
"deploy": "rm -rf node_modules/.cache && yarn build && touch dist/.nojekyll && git add dist/ && git commit -m \"Deploy Application to gh-pages\" && git subtree push --prefix dist origin gh-pages",
"start": "npm run dev"
},
"babel": {
"presets": [
"es2015",
"react",
"stage-2"
],
"plugins": [
"transform-decorators-legacy"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/carloshrabelo/GeoTeste.git"
},
"author": "Carlos Henrique Rabelo de Oliveira",
"license": "ISC",
"bugs": {
"url": "https://github.com/carloshrabelo/GeoTeste/issues"
},
"homepage": "https://github.com/carloshrabelo/GeoTeste#README",
"devDependencies": {
"babel-core": "^6.25.0",
"babel-eslint": "^7.2.3",
"babel-loader": "^7.1.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"cross-env": "^5.1.1",
"css-loader": "^0.28.4",
"eslint": "^4.3.0",
"eslint-loader": "^1.9.0",
"eslint-plugin-react": "^7.1.0",
"extract-text-webpack-plugin": "^3.0.0",
"file-loader": "^1.1.5",
"identity-obj-proxy": "^3.0.0",
"image-webpack-loader": "^3.4.2",
"node-sass": "^4.7.2",
"prop-types": "^15.5.10",
"react-hot-loader": "^1.3.1",
"react-router-dom": "^4.1.2",
"react-test-renderer": "^15.6.1",
"sass-loader": "^6.0.6",
"style-loader": "^0.18.2",
"url-loader": "^0.6.2",
"webpack": "^3.3.0",
"webpack-dev-server": "^2.5.1"
},
"dependencies": {
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"font-awesome": "^4.7.0",
"lato-webfont": "^2.15.1",
"leaflet": "^1.2.0",
"mobx": "^3.4.1",
"mobx-react": "^4.3.5",
"normalize.css": "^7.0.0",
"react": "^15.6.1",
"react-dom": "^15.6.1",
"react-leaflet": "^1.7.8"
}
}