-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.43 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
{
"name": "2016-06-graphql-relay",
"version": "1.0.0",
"description": "Presentation for Ciklum Frontend Corner",
"main": "index.html",
"private": true,
"scripts": {
"start": "$(npm bin)/nodemon server",
"build": "node ./build-schema.js && $(npm bin)/browserify ui/app.js -o ui/app.built.js -t [ babelify --plugins [ ./babelRelayPlugin.js ] --presets [ es2015 react stage-0 ] ]"
},
"keywords": [
"presentation",
"graphql",
"relay"
],
"author": "Antono Vasiljev <[email protected]>",
"dependencies": {
"babel": "^6.0",
"babel-plugin-transform-class-properties": "^6.10.2",
"babel-polyfill": "^6.9.1",
"babel-preset-stage-0": "^6.5.0",
"babel-relay-plugin": "^0.9.1",
"babelify": "^7.3.0",
"browserify": "^13.0.1",
"express": "^4.14.0",
"express-graphql": "^0.5.3",
"express-session": "^1.13.0",
"graphiql": "^0.7.2",
"graphql": "^0.6.0",
"graphql-errors": "^2.1.0",
"node-fetch": "^1.5.3",
"nodemon": "^1.9.2",
"react": "^15.1.0",
"react-dom": "^15.1.0",
"react-relay": "^0.9.1",
"web-presentation": "^1.0.3"
},
"engines": {
"node": ">=6.2.1"
},
"repository": {
"type": "git",
"url": "https://github.com/antono/2016-06-graphql-relay"
},
"devDependencies": {
"babel-preset-es2015": "^6.9.0",
"babel-preset-es2016": "^6.11.0",
"babel-preset-es2017": "^1.4.0",
"babel-preset-react": "^6.11.1"
}
}