-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathpackage.json
53 lines (53 loc) · 1.83 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
{
"name": "react-apollo-starter-kit",
"description": "Scaphold.io's Starter Kit React and Apollo",
"repository": "scaphold-io/react-apollo-starter-kit",
"version": "0.1.0",
"scripts": {
"start": "babel-node ./src/server.js",
"start:prod": "NODE_ENV=production node ./lib/server.js",
"wp": "NODE_ENV=production webpack --config webpack/webpack.config.js --progress --color -p --display-error-details --verbose",
"build": "cp src/index.html lib/ && babel src --out-dir lib --sourceRoot src",
"buildw": "cp src/index.html lib/ && babel src --out-dir lib -w --sourceRoot src",
"deploy": "npm run build && npm run wp"
},
"dependencies": {
"apollo-client": "^0.9.0",
"babel-polyfill": "6.7.4",
"babel-preset-stage-0": "6.5.0",
"babel-relay-plugin": "0.8.1",
"classnames": "2.2.4",
"express": "^4.13.4",
"graphiql": "^0.9.3",
"graphql": "^0.9.1",
"graphql-tag": "^1.2.4",
"isomorphic-fetch": "^2.2.1",
"react": "^15.4.2",
"react-apollo": "^0.12.0",
"react-bootstrap": "^0.30.2",
"react-dom": "^15.4.2",
"react-fontawesome": "^1.1.0",
"react-router": "^2.8.1",
"react-router-scroll": "^0.3.2"
},
"devDependencies": {
"babel-cli": "6.7.7",
"babel-core": "^6.23.1",
"babel-eslint": "^7.1.1",
"babel-loader": "^6.3.2",
"babel-preset-es2015": "^6.22.0",
"babel-preset-react": "^6.5.0",
"copy-webpack-plugin": "^4.0.1",
"eslint": "^3.16.1",
"eslint-config-airbnb": "^14.1.0",
"eslint-plugin-flowtype": "^2.30.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^6.10.0",
"extract-text-webpack-plugin": "^1.0.1",
"html-webpack-plugin": "^2.28.0",
"static-site-generator-webpack-plugin": "^2.1.0",
"webpack": "^2.2.1",
"webpack-dev-server": "^2.4.1"
}
}