-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.3 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
{
"name": "cep-search",
"version": "0.1.0",
"description": "Simple react app to find an address based on CEP code (brazilian postal zip code) and plot a marker on a map",
"main": "src/index.js",
"author": "Vagner Santana",
"license": "MIT",
"dependencies": {
"leaflet": "^1.0.1",
"react": "15.3.2",
"react-dom": "15.3.2",
"react-leaflet": "^0.12.3",
"react-redux": "^4.4.5",
"redux": "^3.6.0",
"redux-thunk": "^2.1.0",
"whatwg-fetch": "^1.0.0"
},
"devDependencies": {
"babel-core": "^6.17.0",
"babel-jest": "^16.0.0",
"babel-loader": "^6.2.5",
"babel-preset-es2015": "^6.16.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-0": "^6.16.0",
"css-loader": "^0.25.0",
"file-loader": "^0.9.0",
"jest": "^16.0.2",
"node-sass": "^3.10.1",
"sass-loader": "^4.0.2",
"style-loader": "^0.13.1",
"url-loader": "^0.5.7",
"webpack": "^1.13.2",
"webpack-dev-server": "^1.16.2"
},
"scripts": {
"start": "open http://localhost:3000 && webpack-dev-server --config=config/webpack.dev.config.js --progress --colors",
"build": "webpack -p --config=config/webpack.config.js --progress --profile --colors",
"test": "./node_modules/jest-cli/bin/jest.js",
"test:watch": "./node_modules/jest-cli/bin/jest.js --watch"
}
}