-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.16 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.16 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
{
"name": "postgres-testing",
"version": "1.0.0",
"description": "postgres testing, version control and migrations",
"main": "index.js",
"scripts": {
"dev": "babel-node index.js --presets es2015,stage-0",
"prod": "cross-env npm run build && NODE_ENV=production node app.js",
"build": "babel index.js -o app.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/combatch/postgres-graphql.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/combatch/postgres-graphql/issues"
},
"homepage": "https://github.com/combatch/postgres-graphql#readme",
"dependencies": {
"babel-polyfill": "^6.20.0",
"cross-env": "^3.1.3",
"fs-extra": "^1.0.0",
"graphql": "^0.8.2",
"knex": "^0.12.6",
"koa": "^2.0.0",
"pg": "^6.1.0",
"pg-hstore": "^2.3.2",
"postgraphql": "^2.3.0",
"pretty-error": "^2.0.2",
"winston": "^2.3.0"
},
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-eslint": "^7.1.1",
"babel-preset-es2015": "^6.18.0",
"babel-preset-stage-0": "^6.16.0",
"colors": "^1.1.2",
"eslint": "^3.11.1",
"winston-papertrail": "^1.0.4"
}
}