-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
69 lines (69 loc) · 2.06 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
{
"name": "podcloud-feeds",
"version": "1.7.6",
"description": "GraphQL API for podcloud",
"scripts": {
"test": "NODE_ENV=test mocha --opts test/mocha.opts",
"coverage": "node_modules/.bin/babel-node node_modules/.bin/babel-istanbul cover node_modules/.bin/_mocha -- --opts test/mocha.opts",
"codecov": "npm run coverage && codecov",
"watch": "nodemon --watch . --exec 'npm test || true'",
"build": "webpack",
"prettier": "prettier --write '{src,test}/**/*.js'"
},
"main": "index.js",
"keywords": [],
"author": "Pof Magicfingers <pof@podcloud.fr>",
"license": "MIT",
"homepage": "https://podcloud.fr/",
"dependencies": {
"apollo-server-express": "^1.1.2",
"body-parser": "^1.18.2",
"cached": "^4.3.1",
"compression": "^1.7.1",
"config": "^1.26.2",
"cors": "^2.8.5",
"debug": "3.1.0",
"express": "4.16.2",
"express-pino-logger": "^4.0.0",
"graphql": "0.11.7",
"graphql-bigint": "^1.0.0",
"graphql-date": "^1.0.3",
"graphql-tools": "^2.0.0",
"marked": "^0.3.12",
"mime-types": "^2.1.27",
"moment": "^2.18.1",
"mongoose": "^4.4.12",
"mongoose-fixture-loader": "^1.0.2",
"request": "^2.83.0",
"request-promise": "^4.0.0",
"sanitize-html": "^1.20.1"
},
"devDependencies": {
"babel-cli": "6.26.0",
"babel-istanbul": "0.12.2",
"babel-loader": "^7.1.2",
"babel-core": "^6.5.2",
"babel-plugin-root-import": "^5.1.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-polyfill": "6.26.0",
"babel-preset-env": "1.6.1",
"chai": "4.1.2",
"chai-as-promised": "^7.1.1",
"codecov": "3.0.0",
"eslint": "^4.16.0",
"eslint-config-prettier": "^2.9.0",
"eslint-loader": "^1.9.0",
"eslint-plugin-prettier": "^2.5.0",
"istanbul": "0.4.5",
"lodash": "4.17.4",
"mocha": "3.5.3",
"nodemon": "1.14.11",
"prettier": "^1.10.2",
"proxyquire": "1.8.0",
"sinon": "4.1.4",
"sinon-chai": "2.14.0",
"sinon-mongoose": "2.0.2",
"webpack": "^3.10.0",
"webpack-node-externals": "^1.6.0"
}
}