-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.48 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
{
"name": "graphql-compose-recompose",
"version": "1.0.0",
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"repository": "git@github.com:digithun/graphql-compose-recompose.git",
"author": "Rungsikorn Rungsikavanich <rungsikorn@me.com>",
"license": "MIT",
"peerDependencies": {
"graphql": "^0.9.1",
"graphql-compose": "^1.17.2",
"graphql-compose-connection": "^2.1.3"
},
"scripts": {
"dev": "sh ./scripts/clean.sh && tsc --watch",
"serve": "node ./example/index.js",
"test": "jest",
"release": "standard-version"
},
"devDependencies": {
"@types/graphql": "^0.9.1",
"babel-eslint": "^7.1.1",
"babel-jest": "^20.0.3",
"body-parser": "^1.17.2",
"cz-conventional-changelog": "^2.0.0",
"eslint": "^3.17.1",
"eslint-config-airbnb": "^14.1.0",
"eslint-config-clogii": "^1.0.0",
"eslint-plugin-flow-vars": "^0.5.0",
"eslint-plugin-flowtype": "^2.30.3",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^6.10.0",
"express": "^4.15.3",
"graphql": "^0.9.1",
"graphql-compose": "1.21.1",
"graphql-compose-connection": "^2.1.3",
"graphql-server-express": "^0.8.4",
"jest": "^19.0.2",
"standard": "^10.0.2",
"standard-version": "^4.2.0"
},
"jest": {
"transform": {
"^.+\\.jsx?$": "babel-jest"
}
},
"dependencies": {},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}