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
73 lines (73 loc) · 2.42 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.42 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
{
"name": "api",
"version": "0.0.0",
"private": true,
"engines": {
"node": ">=6.9.1",
"npm": ">=3.10.8"
},
"dependencies": {
"bluebird": "^3.4.7",
"body-parser": "^1.15.2",
"connect-redis": "^3.2.0",
"cors": "^2.8.1",
"dataloader": "^1.2.0",
"express": "^4.14.0",
"express-flash": "^0.0.2",
"express-graphql": "^0.6.1",
"express-session": "^1.14.2",
"graphql": "^0.8.2",
"graphql-relay": "^0.4.4",
"knex": "^0.12.6",
"node-fetch": "^1.6.3",
"passport": "^0.3.2",
"passport-facebook": "^2.1.1",
"passport-google-oauth": "^1.0.0",
"passport-twitter": "^1.0.4",
"pg": "^6.1.2",
"pretty-error": "^2.0.2",
"redis": "^2.6.3",
"source-map-support": "^0.4.8",
"validator": "^6.2.1"
},
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-core": "^6.21.0",
"babel-eslint": "^7.1.1",
"babel-plugin-syntax-async-functions": "^6.13.0",
"babel-plugin-syntax-trailing-function-commas": "^6.20.0",
"babel-plugin-transform-async-to-module-method": "^6.16.0",
"babel-plugin-transform-class-properties": "^6.19.0",
"babel-plugin-transform-es2015-modules-commonjs": "^6.18.0",
"babel-plugin-transform-export-extensions": "^6.8.0",
"babel-plugin-transform-flow-strip-types": "^6.21.0",
"babel-plugin-transform-object-rest-spread": "^6.20.2",
"babel-plugin-transform-runtime": "^6.15.0",
"babel-register": "^6.18.0",
"chai": "^3.5.0",
"chai-http": "^3.0.0",
"chokidar": "^1.6.1",
"eslint": "^3.13.1",
"eslint-config-airbnb-base": "^11.0.1",
"eslint-plugin-flowtype": "^2.29.2",
"eslint-plugin-import": "^2.2.0",
"flow-bin": "^0.37.4",
"mocha": "^3.2.0",
"rimraf": "^2.5.4"
},
"scripts": {
"lint": "eslint src test scripts migrations",
"check": "flow check",
"test": "mocha test/unit --compilers js:babel-register",
"test:watch": "mocha test/unit --compilers js:babel-register --reporter min --watch",
"build": "node scripts/build.js",
"build:watch": "node scripts/build.js --watch",
"db:version": "node --harmony scripts/db.js version",
"db:migrate": "node --harmony scripts/db.js migrate",
"db:migrate:undo": "node --harmony scripts/db.js migrate:undo",
"db:migration": "node --harmony scripts/db.js migration",
"db:seed": "node --harmony scripts/db.js seed",
"deploy": "/bin/sh scripts/publish.sh",
"start": "node scripts/run.js"
}
}