-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.6 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
{
"name": "entitizer.api",
"version": "0.1.0",
"description": "Private Entitizer API",
"main": "./lib/app.js",
"private": true,
"scripts": {
"start": "tsc && node ./lib/app.js",
"pretest": "npm run tsc",
"test": "mocha",
"tsc": "tsc",
"tscw": "tsc -w",
"preversion": "npm run tsc",
"postversion": "git push --follow-tags",
"prepublish": "npm run tsc"
},
"engines": {
"node": ">=4.0.0"
},
"repository": {
"type": "git",
"url": "git+https://[email protected]/entitizer/api-js.git"
},
"keywords": [
"entitizer",
"api"
],
"author": "Dumitru Cantea",
"license": "ISC",
"bugs": {
"url": "https://[email protected]/entitizer/api-js/issues"
},
"homepage": "https://[email protected]/entitizer/api-js#readme",
"devDependencies": {
"@types/bluebird": "^3.5.11",
"@types/express": "^4.0.35",
"@types/graphql": "^0.9.0",
"@types/graphql-type-json": "^0.1.1",
"@types/joi": "^10.4.3",
"@types/lodash": "^4.14.74",
"@types/node": "^7.x.x",
"@types/redis": "^2.6.0",
"mocha": "^3.2.0",
"typescript": "^2.2.2"
},
"dependencies": {
"cors": "^2.8.4",
"dotenv": "^4.0.0",
"entitizer": "^0.2.0",
"entitizer.data": "^0.1.1",
"entitizer.entities": "^0.1.2",
"entitizer.entity-mapper": "^0.1.5",
"express": "^4.15.2",
"express-graphql": "^0.6.4",
"express-jwt": "^5.3.0",
"graphql": "^0.11.0",
"graphql-tools": "^1.2.1",
"graphql-type-json": "^0.1.4",
"jwks-rsa": "^1.2.0",
"ournet.logger": "^0.1.0",
"redis": "^2.8.0",
"wiki-entity": "^0.2.2"
}
}