-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
62 lines (62 loc) · 1.87 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
{
"name": "create-graphql-server",
"version": "0.5.4",
"description": "Scaffolding tool for GraphQL apps",
"bin": {
"create-graphql-server": "./dist/bin/create-graphql-server.js"
},
"files": [
"dist/bin",
"dist/generate",
"dist/skel"
],
"scripts": {
"testonly": "mocha --require babel-register",
"test": "npm run testonly test/generate",
"end-to-end-test": "./test/output-app-end-to-end/scripts/run-end-to-end-tests.sh",
"preoutput-app-generation-test": "npm run build",
"output-app-generation-test": "./test/output-app-generation-test.sh",
"pretest-add-update-remove": "npm run build",
"test-add-update-remove": "./test/test-add-update-remove.sh",
"clean": "rm -rf dist/*",
"build": "npm run clean && babel bin --out-dir dist/bin && babel generate -D --out-dir dist/generate && cp -r skel dist",
"prepublish": "npm run build"
},
"author": "Tom Coleman",
"license": "MIT",
"devDependencies": {
"babel-cli": "6.16.0",
"babel-core": "6.17.0",
"babel-eslint": "^7.0.0",
"babel-preset-es2015": "6.16.0",
"babel-preset-react": "6.16.0",
"babel-preset-stage-2": "6.17.0",
"babel-register": "6.16.3",
"chai": "^3.5.0",
"chai-diff": "^1.0.1",
"eslint": "3.8.1",
"eslint-config-airbnb": "12.0.0",
"eslint-plugin-babel": "3.3.0",
"eslint-plugin-import": "1.16.0",
"eslint-plugin-jsx-a11y": "2.2.3",
"eslint-plugin-react": "6.4.1",
"mocha": "^3.1.2",
"node-fetch": "^1.6.3"
},
"dependencies": {
"babylon": "^6.14.1",
"chalk": "^1.1.3",
"cpr": "^2.0.0",
"denodeify": "^1.2.1",
"escape-string-regexp": "^1.0.5",
"graphql": "0.7.2",
"lodash.clonedeep": "^4.5.0",
"lodash.includes": "^4.3.0",
"lodash.merge": "^4.6.0",
"md5": "^2.2.1",
"minimist": "^1.2.0",
"mkdirp": "^0.5.1",
"recast": "^0.11.18",
"rimraf": "^2.5.4"
}
}