-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathpackage.json
88 lines (88 loc) · 2.93 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "reindex-api",
"version": "0.1.0",
"description": "reindex-api",
"private": true,
"license": "MIT",
"repository": "reindexio/reindex-api",
"engines": {
"node": "6.1.0",
"npm": "3.8.8"
},
"dependencies": {
"babel-cli": "^6.8.0",
"babel-plugin-syntax-async-functions": "^6.8.0",
"babel-plugin-syntax-trailing-function-commas": "^6.8.0",
"babel-plugin-transform-async-to-module-method": "^6.8.0",
"babel-plugin-transform-class-properties": "^6.8.0",
"babel-plugin-transform-exponentiation-operator": "^6.8.0",
"babel-plugin-transform-object-rest-spread": "^6.8.0",
"babel-plugin-transform-runtime": "^6.8.0",
"babel-preset-es2015-node5": "^1.2.0",
"babel-register": "^6.8.0",
"babel-runtime": "^6.6.1",
"base64-url": "^1.2.1",
"bassmaster": "^1.7.0",
"bell": "^6.1.0",
"bluebird": "^2.10.2",
"boom": "^3.0.0",
"cli-table": "^0.3.1",
"convict": "^1.0.1",
"cryptiles": "^3.0.0",
"dataloader": "^1.2.0",
"dot": "^1.0.3",
"good": "^6.1.4",
"good-console": "^5.0.2",
"graphql": "^0.5.0",
"hapi": "^11.1.2",
"hapi-auth-basic": "^4.1.0",
"hapi-require-https": "^2.0.2",
"immutable": "^3.7.2",
"inert": "^3.2.0",
"inflection": "^1.8.0",
"intercom-client": "^2.4.0",
"invariant": "^2.1.0",
"jsonwebtoken": "^5.0.1",
"kerberos": "0.0.17",
"lodash": "^3.10.1",
"minimist": "^1.1.2",
"mongodb": "^2.2.6",
"node-fetch": "^1.3.3",
"promptly": "^0.2.1",
"qs": "^6.0.1",
"raven": "^0.10.0",
"rethinkdb": "^2.1.0",
"secure-filters": "^1.0.5",
"stats-lite": "^2.0.1",
"uuid": "^2.0.1",
"winchan": "^0.1.1"
},
"devDependencies": {
"babel-eslint": "^6.0.4",
"chai": "^3.4.1",
"diff": "^2.2.1",
"eslint": "^1.10.3",
"eslint-plugin-babel": "^3.0.0",
"jsdoc": "^3.3.0-beta3",
"mocha": "^2.2.4",
"nodemon": "^1.3.7"
},
"scripts": {
"start": "nodemon index.js",
"lint": "eslint ./",
"mocha": "mocha --no-timeouts --compilers js:babel-register --recursive test/setup.js",
"testonly": "mocha --no-timeouts --compilers js:babel-register --recursive test/setup.js $(find ./ -name __tests__ | grep -v node_modules)",
"test": "npm run lint && npm run testonly",
"add-storage": "babel-node bin/add-storage.js",
"create-admin-app": "babel-node bin/create-admin-app.js",
"create-app": "babel-node bin/create-app-for-user.js",
"create-token": "babel-node bin/create-token.js",
"list-apps": "babel-node bin/list-apps.js",
"get-stats": "babel-node bin/get-stats.js",
"measure-stats": "babel-node bin/get-stats.js -l",
"delete-app": "babel-node bin/delete-app",
"print-schema": "babel-node bin/print-schema.js",
"benchmark": "DATABASE_TYPE=MongoDB babel-node bin/run-benchmark",
"graphiql": "cd ./public/reindex-graphiql && npm install && npm run build && cd ../ && cp reindex-graphiql/public/static/* static/"
}
}