-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 2.12 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
{
"name": "react-relay-modern-starter-kit",
"version": "0.0.1",
"description": "",
"main": "index.js",
"scripts": {
"start": "yarn run fetch-schema && webpack-dev-server --hot --open --config ./config/webpack.config.js",
"soft-start": "webpack-dev-server --hot --open --config ./config/webpack.config.js",
"build": "yarn run fetch-schema && yarn run compile-relay && webpack -p --config ./config/webpack.production.config.js",
"compile-relay": "relay-compiler --src ./src --schema ./public/schema.json",
"fetch-schema": "graphql-js-schema-fetch http://localhost:8080/graphql > public/schema.json",
"test": "jest --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pt-br/relay-modern-boilerplate.git"
},
"keywords": [
"relay modern boilerplate",
"relay modern",
"react boilerplate",
"build",
"webpack"
],
"author": "@pt-br",
"bugs": {
"url": "git+https://github.com/pt-br/relay-modern-boilerplate.git/issues"
},
"homepage": "git+https://github.com/pt-br/relay-modern-boilerplate.git",
"dependencies": {
"found": "^0.3.4",
"found-relay": "next",
"graphql-relay": "^0.5.2",
"normalize.css": "^7.0.0",
"react": "^16.1.1",
"react-dom": "^16.1.1",
"react-relay": "^1.3.0",
"relay-compiler": "^1.3.0",
"relay-runtime": "^1.3.0",
"styled-components": "^3.1.6"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-jest": "^22.2.2",
"babel-loader": "^7.1.2",
"babel-plugin-relay": "^1.3.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.0",
"babel-preset-react": "^6.24.1",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"enzyme-to-json": "^3.3.1",
"graphql-js-schema-fetch": "^1.1.2",
"html-webpack-plugin": "^2.30.1",
"jest": "^22.2.2",
"react-hot-loader": "next",
"regenerator-runtime": "^0.11.1",
"webpack": "^3.6.0",
"webpack-dev-server": "^2.8.2",
"webpack-shell-plugin": "^0.5.0"
},
"jest": {
"snapshotSerializers": [
"enzyme-to-json/serializer"
]
}
}