-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 1.73 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
{
"name": "contentry",
"version": "1.0.12",
"engines": {
"node": ">= 8.9.0"
},
"description": "Expose WordPress through GraphQL",
"main": "lib/index.js",
"scripts": {
"start": "node lib/server.js",
"clean": "rimraf lib && mkdir lib",
"build-server": "babel -d ./lib ./src",
"build": "npm run clean && npm run build-server",
"watch": "nodemon -w src/ --exec \"babel-node src/server.js\"",
"prepare": "npm run build && npm test",
"test": "mocha --require babel-core/register --recursive"
},
"repository": {
"type": "git",
"url": "git+https://github.com/abstractvector/contentry.git"
},
"keywords": [
"wordpress",
"cms",
"graphql",
"api"
],
"author": "Matt Knight <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/abstractvector/contentry/issues"
},
"homepage": "https://github.com/abstractvector/contentry#readme",
"dependencies": {
"@koa/cors": "^2.2.1",
"apollo-server-koa": "^1.3.6",
"babel-register": "^6.26.0",
"config": "^1.30.0",
"graphql": "^0.12.3",
"graphql-tools": "^2.24.0",
"html2plaintext": "^2.0.1",
"js-yaml": "^3.11.0",
"koa": "^2.5.1",
"koa-bodyparser": "^4.2.0",
"koa-router": "^7.4.0",
"mysql2": "^1.5.3",
"php-serialize": "^1.3.1",
"sequelize": "^4.37.7",
"wpautop": "^0.2.2"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-preset-env": "^1.7.0",
"chai": "^4.1.2",
"mocha": "^4.1.0",
"nodemon": "^1.17.4",
"rimraf": "^2.6.2"
},
"babel": {
"presets": [
[
"env",
{
"targets": {
"node": "8.9.0"
}
}
]
]
}
}