-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.41 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
{
"name": "react-fgql",
"version": "1.0.2",
"description": "react-fgql is a HOC for integration [fgql](https://github.com/hamavb/fgql) into react application.",
"main": "lib/react-fgql.js",
"scripts": {
"clean": "rimraf lib && mkdir lib",
"build": "npm run clean && webpack --mode=build",
"dev": "npm run clean && webpack --progress --colors --watch --mode=dev",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test": "mocha --compilers js:babel-core/register --colors -w ./test/*.spec.js"
},
"devDependencies": {
"babel": "6.5.2",
"babel-core": "6.10.4",
"babel-eslint": "6.1.0",
"babel-loader": "6.2.4",
"babel-plugin-add-module-exports": "0.1.2",
"babel-preset-es2015": "6.3.13",
"babel-preset-react": "^6.11.1",
"babel-preset-stage-0": "^6.5.0",
"chai": "3.4.1",
"eslint": "3.0.1",
"eslint-config-standard": "^5.3.1",
"eslint-loader": "1.4.0",
"eslint-plugin-promise": "^1.3.2",
"eslint-plugin-react": "^5.2.2",
"eslint-plugin-standard": "^1.3.2",
"invariant": "^2.2.1",
"mocha": "2.3.4",
"webpack": "1.13.1",
"yargs": "3.32.0"
},
"repository": {
"type": "git",
"url": ""
},
"keywords": [
"react",
"graphql",
"client",
"relay",
"fetch"
],
"author": "Mohamed MHAMDI",
"license": "MIT",
"bugs": {
"url": ""
},
"homepage": "",
"dependencies": {
"warning": "^3.0.0"
}
}