-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.34 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.34 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
{
"name": "challenge",
"version": "1.0.0",
"description": "code challenge",
"main": "index.js",
"dependencies": {
"babel-loader": "^7.1.2",
"babel-preset-env": "^1.6.0",
"babel-preset-react": "^6.24.1",
"classnames": "^2.2.5",
"google-fonts-webpack-plugin": "^0.4.3",
"graphql-tag": "^2.4.2",
"react": "^16.0.0",
"react-apollo": "^1.4.16",
"react-dom": "^16.0.0",
"react-geosuggest": "^2.5.0",
"react-icons": "^2.2.5",
"react-router-dom": "^4.2.2"
},
"devDependencies": {
"babel-core": "^6.26.0",
"css-loader": "^0.28.7",
"extract-text-webpack-plugin": "^3.0.0",
"jsx-loader": "^0.13.2",
"node-sass": "^4.5.3",
"sass-loader": "^6.0.6",
"style-loader": "^0.18.2",
"webpack": "^3.6.0"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "webpack -d --watch",
"build": "webpack -p",
"start": "npm run build && http-server ./src/client -a localhost -p 3000 -o"
},
"repository": {
"type": "git",
"url": "git+https://github.com/robsoncoelho/reactjs-graphql.git"
},
"keywords": [
"reactjs",
"graphQL"
],
"author": "Robson Coelho",
"license": "ISC",
"bugs": {
"url": "https://github.com/robsoncoelho/reactjs-graphql/issues"
},
"homepage": "https://github.com/robsoncoelho/reactjs-graphql#readme"
}