forked from apollographql/react-apollo-error-template
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
24 lines (24 loc) · 732 Bytes
/
package.json
File metadata and controls
24 lines (24 loc) · 732 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
"private": true,
"name": "apollo-client-error-template",
"version": "0.1.0",
"devDependencies": {
"gh-pages": "^1.0.0",
"react-scripts": "1.0.16"
},
"dependencies": {
"apollo-client-preset": "^1.0.4",
"graphql": "^0.11.7",
"graphql-tag": "^2.5.0",
"react": "^16.2.0",
"react-apollo": "^2.0.1",
"react-dom": "^16.2.0",
"react-router-dom": "^4.2.2"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"deploy": "PUBLIC_URL=/react-apollo-error-template/$(git symbolic-ref --short HEAD) npm run build && gh-pages-clean && gh-pages -d build --dest $(git symbolic-ref --short HEAD) --remote"
}
}