-
Notifications
You must be signed in to change notification settings - Fork 36
/
package.json
113 lines (113 loc) · 3.5 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
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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"name": "graphql-auto-generating-cms",
"version": "2.4.0",
"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",
"build": "cross-env NODE_ENV=development gulp",
"test": "npm run test:client && npm run test:server",
"test:client": "cross-env NODE_ENV=test jest --env=jsdom --runInBand __tests__/components.test.js",
"test:server": "cross-env NODE_ENV=test mocha --compilers js:babel-core/register __tests__/middleware.js",
"example": "webpack && cross-env NODE_ENV=test babel-node --no-babelrc --presets=react,env,stage-0 ./example/src/server.js",
"prepublish": "npm run build && npm run test"
},
"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 ([email protected])"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/sarkistlt/graphql-auto-generating-cms/issues"
},
"homepage": "https://github.com/sarkistlt/graphql-auto-generating-cms#readme",
"dependencies": {
"babel-jest": "^20.0.3",
"babel-preset-es2015": "^6.24.1",
"cross-env": "^3.1.4",
"formidable": "^1.0.17",
"fs-extra": "^1.0.0",
"markdown-it": "^8.4.0",
"promise-polyfill": "^6.0.2",
"@revall/react-markmirror": "^0.4.17",
"react-test-renderer": "^15.6.1",
"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.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^7.2.3",
"babel-loader": "7.1.1",
"babel-plugin-remove-comments": "^2.0.0",
"babel-plugin-transform-flow-comments": "^6.22.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.0",
"babel-preset-flow": "^6.23.0",
"babel-preset-minify": "^0.2.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"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",
"eslint": "^4.5.0",
"eslint-config-airbnb": "^15.1.0",
"eslint-plugin-babel": "^4.1.2",
"eslint-plugin-flowtype": "^2.35.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-react": "^7.3.0",
"express-graphql": "^0.6.1",
"flow-babel-webpack-plugin": "^1.1.0",
"flow-bin": "^0.53.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",
"jest": "^20.0.4",
"json-loader": "^0.5.7",
"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"
},
"jest": {
"verbose": true
}
}