-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.17 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
{
"name": "pf-user-api",
"version": "0.0.1",
"description": "Pulpfree user API server",
"main": "index.js",
"repository": "https://github.com/pulpfree/pf-user-api",
"scripts": {
"test": "NODE_ENV=test tape -r babel-register tests/**/*.spec.js | tap-spec",
"build": "babel src -d dist",
"serve": "node dist/index.js",
"start": "NODE_ENV=development nodemon src/index.js --exec babel-node"
},
"author": "Ron Dyck <[email protected]> (http://webbtech.net/)",
"license": "MIT",
"dependencies": {
"apollo-errors": "1.3.0",
"apollo-server": "0.3.3",
"babel-cli": "6.23.0",
"bcrypt": "1.0.2",
"fs": "0.0.2",
"graphql": "0.9.1",
"graphql-server-hapi": "0.6.0",
"graphql-tools": "0.10.0",
"hapi": "16.1.0",
"hapi-auth-bearer-token": "4.3.1",
"jsonwebtoken": "7.3.0",
"mongoose": "4.8.3",
"object-path": "0.11.3",
"path": "0.12.7",
"request": "2.79.0",
"request-promise": "4.1.1",
"underscore": "1.8.3"
},
"devDependencies": {
"babel-preset-es2015": "6.22.0",
"babel-preset-stage-2": "6.22.0",
"mocha": "3.2.0",
"nodeman": "1.1.2",
"tap-spec": "4.1.1",
"tape": "4.6.3"
}
}