-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.01 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
{
"name": "zox",
"version": "1.1.2",
"description": "Service-Oriented Web Framework",
"author": "Zoran Ravic <[email protected]> (zoranravic.com)",
"license": "MIT",
"repository": "zoxjs/zox",
"homepage": "http://zoxjs.com/",
"main": "lib/index.js",
"files": [
"LICENSE",
"Readme.md",
"index.js",
"index.d.ts",
"lib/**/*.js",
"lib/**/*.d.ts"
],
"keywords": [
"framework",
"web",
"server",
"graphql",
"rest",
"restful",
"router",
"app",
"api"
],
"dependencies": {
"graphql": "^14.0.2",
"js-yaml": "^3.12.0",
"marked": "^0.4.0",
"mime": "^2.3.1",
"reflect-metadata": "^0.1.12",
"ws": "^5.2.2"
},
"devDependencies": {
"@types/graphql": "^0.13.4",
"@types/js-yaml": "^3.11.2",
"@types/marked": "^0.3.0",
"@types/node": "^10.12.0",
"graphql-plugins": "^1.1.0",
"zox-plugins": "^1.0.6"
},
"scripts": {
"prepublishOnly": "tsc"
},
"plugins": {
"dirs": [
"lib/Plugins"
]
}
}