-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
115 lines (115 loc) · 3.63 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"name": "CK-GraphQL",
"version": "0.0.1",
"description": "CK-GraphQL",
"main": "index.js",
"scripts": {
"build": "npm run clean && npm run build:webpack",
"build:webpack": "NODE_ENV=production webpack --config webpack.config.prod.js",
"clean": "rimraf dist",
"dev": "node dev-server.js",
"lint": "node_modules/.bin/eslint --ext .js .",
"start": "node index.js",
"test": "NODE_ENV=test NODE_PATH=. ./node_modules/.bin/mocha test/setup.js test --recursive",
"test:client": "NODE_ENV=test NODE_PATH=. ./node_modules/.bin/mocha test/setup.js test/client --recursive",
"test:server": "NODE_ENV=test NODE_PATH=. ./node_modules/.bin/mocha test/setup.js test/server --recursive",
"test:server:watch": "NODE_ENV=test NODE_PATH=. ./node_modules/.bin/mocha test/setup.js test/server --recursive --watch",
"prepush": "npm run lint && npm run test && flow check"
},
"author": "",
"license": "MIT",
"dependencies": {
"assert-env": "^0.6.0",
"axios": "^0.9.1",
"babel-core": "^6.9.0",
"babel-plugin-transform-flow-strip-types": "^6.8.0",
"babel-plugin-transform-runtime": "^6.9.0",
"babel-polyfill": "^6.7.4",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-0": "^6.5.0",
"babel-register": "^6.9.0",
"bluebird": "^3.3.1",
"chalk": "^1.1.3",
"cron": "^1.1.0",
"es6-error": "^3.0.1",
"glob": "^7.0.3",
"good": "^6.6.0",
"good-console": "^5.3.1",
"good-logentries": "^2.0.2",
"googlemaps": "^1.4.0",
"graphql": "^0.6.2",
"hapi": "^13.2.1",
"hapi-auth-cookie": "^6.1.1",
"hapi-auth-jwt": "^4.0.0",
"hapi-graphql": "^1.0.1",
"hapi-require-https": "^2.0.5",
"hapi-swagger": "^5.0.1",
"heretic": "^0.3.0",
"inert": "^3.2.0",
"joi-browser": "^8.0.5",
"knex": "^0.9.0",
"lodash": "^4.7.0",
"mariner": "^0.5.0",
"moment": "^2.12.0",
"numeral": "^1.5.3",
"object-assign": "^4.0.1",
"pg": "^4.5.1",
"react": "^15.1.0",
"react-autosuggest": "^3.7.4",
"react-blur-admin": "^0.10.1",
"react-dom": "^15.1.0",
"react-flex-proto": "^1.0.0",
"react-gl-maps": "git+https://github.com/knledg/react-gl-maps.git",
"react-image-gallery": "^0.6.3",
"react-router": "^2.0.1",
"react-tap-event-plugin": "^1.0.0",
"react-tooltip": "^3.0.8",
"rollbar": "^0.6.2",
"sha1": "^1.1.1",
"store": "^1.3.20",
"vision": "^4.1.0"
},
"devDependencies": {
"babel-eslint": "^6.0.4",
"babel-loader": "^6.2.4",
"babel-plugin-react-transform": "^2.0.2",
"babel-preset-react-hmre": "^1.1.1",
"babel-runtime": "^6.6.1",
"chai": "^3.5.0",
"cli-interact": "^0.1.9",
"css-loader": "^0.23.1",
"enzyme": "^2.3.0",
"eslint": "^2.10.2",
"eslint-plugin-react": "^5.1.1",
"estraverse-fb": "^1.3.1",
"express": "^4.13.4",
"extract-text-webpack-plugin": "^1.0.1",
"file-loader": "^0.8.5",
"html-loader": "^0.4.3",
"html-webpack-plugin": "^2.15.0",
"jsdom": "^9.4.1",
"mocha": "^2.5.2",
"node-sass": "^3.4.2",
"postcss-loader": "^0.8.2",
"raw-loader": "^0.5.1",
"react-addons-test-utils": "^15.1.0",
"react-transform-catch-errors": "^1.0.2",
"react-transform-hmr": "^1.0.4",
"redbox-react": "^1.2.2",
"rimraf": "^2.5.2",
"sass-loader": "^3.2.0",
"sinon": "^1.17.4",
"style-loader": "^0.13.1",
"url-loader": "^0.5.7",
"webpack": "^1.13.1",
"webpack-dev-middleware": "^1.6.1",
"webpack-dev-server": "^1.14.1",
"webpack-hot-middleware": "^2.10.0",
"whatwg-fetch": "^1.0.0",
"yargs": "^4.7.1"
},
"engines": {
"node": "6.4.x"
}
}