forked from kriasoft/graphql-starter-kit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.54 KB
/
Copy pathpackage.json
File metadata and controls
70 lines (70 loc) · 1.54 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
{
"name": "generator-nodejs-api",
"version": "0.2.0",
"description": "Node.js API Starter Kit built with Docker, Node.js, JavaScript (ES6, ES2015+ via Babel), PostgreSQL and GraphQL",
"repository": "kriasoft/nodejs-api-starter",
"author": "Kriasoft <hello@kriasoft.com> (https://www.kriasoft.com)",
"contributors": [
"Konstantin Tarkus <hello@tarkus.me> (https://www.codementor.io/koistya)"
],
"license": "MIT",
"files": [
"generators"
],
"main": "generators/index.js",
"keywords": [
"graphql",
"docker",
"relay",
"react",
"reactjs",
"react.js",
"node",
"nodejs",
"node.js",
"babel",
"es6",
"es2015",
"es2017",
"sdk",
"template",
"starter kit",
"sql",
"database",
"postgres",
"postgresql",
"yeoman",
"yeoman-generator"
],
"dependencies": {
"chalk": "^1.1.3",
"glob": "^7.1.1",
"yeoman-generator": "^0.24.1",
"yosay": "^1.2.1"
},
"devDependencies": {
"yeoman-test": "^1.5.1",
"yeoman-assert": "^2.2.1",
"eslint": "^3.11.1",
"eslint-config-xo-space": "^0.15.0",
"gulp": "^3.9.1",
"gulp-eslint": "^3.0.1",
"gulp-exclude-gitignore": "^1.1.1",
"gulp-line-ending-corrector": "^1.0.1",
"gulp-istanbul": "^1.1.1",
"gulp-mocha": "^3.0.1",
"gulp-plumber": "^1.1.0",
"gulp-nsp": "^2.4.2",
"gulp-coveralls": "^0.1.4"
},
"eslintConfig": {
"extends": "xo-space",
"env": {
"mocha": true
}
},
"scripts": {
"prepublish": "gulp prepublish",
"test": "gulp"
}
}