-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 2.45 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "demo-graphql-client-app",
"version": "1.0.0",
"description": "An example app that has feeds / threads / posts etc.",
"main": "index.js",
"scripts": {
"start": "budo . -d --serve bundle.js --live -- -t babelify ",
"start-prod": "budo . -d --serve bundle.js --live -- -t babelify -p tinyify",
"build": "browserify . -o bundle.js -p tinyify",
"build-sass": "gulp sass",
"test": "browserify test/index.js | node | tap-spec",
"dist": "mkdir -p dist && bash -c 'cp *.{js,html,css} dist' && cp css dist -r",
"push": "gh-pages -d dist",
"deploy": "npm run build && npm run dist && npm run push",
"graphql:get-schema": "graphql get-schema",
"graphql:generate-fragments": "graphql generate-fragments",
"graphql:rebuild": "npm run graphql:get-schema && npm run graphql:generate-fragments"
},
"browserify": {
"transform": [
"babelify"
]
},
"repository": {
"type": "git",
"url": "https://github.com/sunrise-choir/demo-graphql-client-app"
},
"author": "pietgeursen",
"license": "MPL-2.0",
"bugs": {
"url": "https://github.com/sunrise-choir/demo-graphql-client-app/issues"
},
"homepage": "https://github.com/sunrise-choir/demo-graphql-client-app",
"dependencies": {},
"devDependencies": {
"@babel/core": "^7.4.3",
"@babel/preset-env": "^7.4.3",
"@babel/preset-react": "^7.0.0",
"apollo-boost": "^0.3.1",
"autoprefixer": "^9.1.5",
"babelify": "^10.0.0",
"browser-sync": "^2.26.3",
"browserify": "^16.2.3",
"budo": "^11.6.1",
"classnames": "^2.2.6",
"color-hash": "^1.0.3",
"emoji-named-characters": "^1.0.2",
"foundation-sites": "^6.5.1",
"gh-pages": "^0.11.0",
"graphql": "^14.2.1",
"graphql-cli": "^3.0.11",
"graphql-cli-generate-fragments": "^1.4.1",
"gulp": "^4.0.0",
"gulp-load-plugins": "^1.1.0",
"gulp-postcss": "^8.0.0",
"gulp-sass": "^4.0.1",
"match-all": "^1.2.5",
"motion-ui": "~2.0.0",
"ramda": "^0.26.1",
"react": "^16.8.6",
"react-apollo": "^2.5.5",
"react-dom": "^16.8.6",
"react-foundation": "^0.9.6",
"react-infinite-scroller": "^1.2.4",
"react-markdown": "^4.0.8",
"react-router": "^5.0.0",
"react-router-dom": "^5.0.0",
"react-sticky": "^6.0.3",
"regex-emoji": "^2.0.7",
"ssb-markdown": "^4.1.0",
"ssb-ref": "^2.13.9",
"store2": "^2.7.1",
"tap-spec": "^4.1.1",
"tape": "^4.5.1",
"tinyify": "^2.5.0",
"watchify": "^3.7.0"
}
}