forked from sarkistlt/graphql-auto-generating-cms
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 2.96 KB
/
Copy pathpackage.json
File metadata and controls
96 lines (96 loc) · 2.96 KB
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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "graphql-auto-generating-cms",
"version": "2.2.97",
"description": "This module will use your existed graphQL schema to generate simple for use CMS in a couple minutes!",
"main": "lib/index.js",
"scripts": {
"dev:hot": "npm run build && cross-env NODE_ENV=development babel-node ./example/src/server.js",
"example": "cross-env NODE_ENV=test babel-node ./example/src/server.js",
"build": "cross-env NODE_ENV=test gulp",
"prepublish": "npm run build",
"test:all": "npm run build && cross-env NODE_ENV=test istanbul cover _mocha -- test --compilers js:babel-core/register",
"test:middleware": "cross-env NODE_ENV=test gulp build:middleware && mocha --compilers js:babel-core/register test/middleware.js",
"test:layout": "mocha --compilers js:babel-core/register test/layout.js"
},
"repository": {
"type": "git",
"url": "https://github.com/sarkistlt/graphql-auto-generating-cms.git"
},
"keywords": [
"cms",
"CMS",
"react",
"react cms",
"graphql",
"graphql cms",
"keystone",
"feathers",
"auto generated",
"auto cms",
"React",
"GraphQL CMS"
],
"author": {
"name": "Sarkis Arutiunian (sarkis.tlt@gmail.com)"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/sarkistlt/graphql-auto-generating-cms/issues"
},
"homepage": "https://github.com/sarkistlt/graphql-auto-generating-cms#readme",
"dependencies": {
"cross-env": "^3.1.4",
"formidable": "^1.0.17",
"fs-extra": "^1.0.0",
"promise-polyfill": "^6.0.2",
"semantic-ui-react": "^0.61.1",
"util": "^0.10.3",
"whatwg-fetch": "^2.0.2"
},
"peerDependencies": {
"graphql": "^0.7.2",
"react": "^0.14 || ^15.0.0-rc || ^15.0",
"react-dom": "^0.14 || ^15.0.0-rc || ^15.0"
},
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-core": "^6.18.2",
"babel-loader": "^6.2.7",
"babel-polyfill": "^6.16.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-0": "^6.16.0",
"babel-preset-stage-1": "^6.16.0",
"babelify": "^7.3.0",
"chai": "^3.5.0",
"chai-enzyme": "^0.6.0",
"coveralls": "^2.11.14",
"css-loader": "^0.25.0",
"del": "^2.2.2",
"enzyme": "^2.6.0",
"eslint": "^3.10.2",
"eslint-config-airbnb": "^13.0.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^2.2.3",
"eslint-plugin-react": "^6.7.1",
"express-graphql": "^0.6.1",
"graphql": "^0.7.2",
"gulp": "github:gulpjs/gulp#4.0",
"gulp-babel": "^6.1.2",
"gulp-browserify": "^0.5.1",
"gulp-less": "^3.2.0",
"gulp-sass": "^2.3.2",
"gulp-sourcemaps": "^2.4.1",
"mocha": "^3.1.2",
"mocha-lcov-reporter": "^1.2.0",
"nedb": "^1.8.0",
"react": "^15.3.2",
"react-addons-test-utils": "^15.4.1",
"react-dom": "^15.3.2",
"react-router": "^3.0.0",
"style-loader": "^0.13.1",
"url-loader": "^0.5.7",
"webpack": "^1.13.3",
"webpack-dev-server": "^1.16.2"
}
}