-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
59 lines (59 loc) · 2 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
{
"name": "raf",
"version": "0.9.5",
"description": "An Apollo GraphQL example using React and FakerQl.",
"main": "dist/server.js",
"scripts": {
"build": "rm -rf ./dist npm run build:server && npm run build:client",
"build:dev": "npm run build:server -- --watch & npm run build:client -- --watch --hot",
"build:server": "webpack --config config/webpack.config.server.js",
"build:client": "webpack --config config/webpack.config.client.js",
"start": "node dist/server",
"start:dev": "nodemon dist/server",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"precommit": "lint-staged",
"dev":
"echo DEPRECATED! && NODE_ENV=development PORT=3000 npm run build && npm run start:dev & npm run build:dev"
},
"repository": "git@github.com:juandc/RAF.git",
"author": "Juan David Castro (@juandc) <me@juandc.co>",
"license": "MIT",
"dependencies": {
"apollo-cache-inmemory": "^1.1.11",
"apollo-client": "^2.2.7",
"apollo-link-http": "^1.5.3",
"express": "^4.16.3",
"graphql": "^0.13.2",
"graphql-tag": "^2.8.0",
"isomorphic-fetch": "^2.2.1",
"prop-types": "^15.6.1",
"react": "^16.3.1",
"react-apollo": "^2.1.0-rc.4",
"react-dom": "^16.3.1",
"react-router-dom": "^4.2.2",
"styled-components": "^3.2.5"
},
"devDependencies": {
"@babel/core": "^7.0.0-beta.42",
"@babel/preset-env": "^7.0.0-beta.42",
"@babel/preset-react": "^7.0.0-beta.42",
"@babel/preset-stage-3": "^7.0.0-beta.42",
"babel-loader": "^8.0.0-beta",
"eslint": "^4.19.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-import": "^2.9.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-prettier": "^2.6.0",
"eslint-plugin-react": "^7.7.0",
"husky": "^0.14.3",
"lint-staged": "^7.0.2",
"nodemon": "^1.17.2",
"prettier": "^1.11.1",
"webpack": "^4.2.0",
"webpack-cli": "^2.0.13",
"webpack-livereload-plugin": "^2.1.1",
"webpack-node-externals": "^1.6.0"
}
}