-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
98 lines (98 loc) · 2.77 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
{
"name": "ournet-api",
"version": "0.2.0",
"description": "Ournet API",
"main": "./lib/app.js",
"private": true,
"scripts": {
"start": "node ./lib/app.js",
"dev": "yarn tsc && node ./lib/app.js",
"pretest": "yarn clean && yarn tsc",
"test": "ava --no-cache --verbose ./lib/*.test.js ./lib/**/*.test.js",
"posttest": "yarn clean-test-code",
"tsc": "tsc",
"tscw": "tsc -w",
"preversion": "yarn tsc",
"postversion": "git push --follow-tags",
"prepublish": "yarn tsc && yarn clean-test-code",
"clean": "rimraf ./lib",
"clean-test-code": "rimraf ./lib/**/*.test.js && rimraf ./lib/*.test.js"
},
"engines": {
"node": ">=8.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/Ournet/ournet-api.git"
},
"keywords": [
"ournet",
"api"
],
"author": "Dumitru Cantea",
"license": "ISC",
"bugs": {
"url": "https://github.com/Ournet/ournet-api/issues"
},
"homepage": "https://github.com/Ournet/ournet-api#readme",
"devDependencies": {
"@types/bytes": "^3.1.1",
"@types/content-type": "^1.1.5",
"@types/graphql": "^14.0.3",
"@types/ioredis": "^4.16.0",
"@types/json-schema": "^7.0.12",
"@types/ms": "^0.7.30",
"@types/object-hash": "^3.0.2",
"@types/ramda": "^0.29.3",
"@types/slug": "^5.0.4",
"rimraf": "^2.6.2",
"ts-node": "^10.9.1",
"typescript": "^4.6.3"
},
"dependencies": {
"@aws-sdk/client-dynamodb": "^3.398.0",
"@aws-sdk/client-s3": "^3.400.0",
"@ournet/domain": "~0.x.x",
"@ournet/horoscopes-data": "~0.1.4",
"@ournet/horoscopes-domain": "~0.1.4",
"@ournet/images-data": "~0.x.x",
"@ournet/images-domain": "~0.x.x",
"@ournet/news-data": "~0.1.8",
"@ournet/news-domain": "~0.x.x",
"@ournet/places-data": "~0.2.6",
"@ournet/places-domain": "~0.x.x",
"@ournet/quotes-data": "~0.3.x",
"@ournet/quotes-domain": "~0.3.x",
"@ournet/topics-data": "~0.x.x",
"@ournet/topics-domain": "~0.x.x",
"@ournet/videos-data": "~0.x.x",
"@ournet/videos-domain": "~0.x.x",
"@ournet/weather-data": "~0.x.x",
"@ournet/weather-domain": "^0.2.9",
"ajv": "^8.12.0",
"ajv-formats": "^2.1.1",
"apollo-server": "^2.3.1",
"atonic": "^1.0.4",
"aws-sdk": "^2.382.0",
"axios": "^1.5.0",
"bytes": "^3.1.2",
"content-type": "^1.0.5",
"debug": "^4.1.1",
"dotenv": "^6.2.0",
"emittery": "^0.6.0",
"graphql": "^14.0.2",
"graphql-type-json": "^0.2.1",
"ioredis": "^4.16.3",
"json-schema": "^0.4.0",
"jsonwebtoken": "^9.0.2",
"mongodb": "^4.3.0",
"ms": "^2.1.1",
"news-sources": "^0.1.10",
"object-hash": "^3.0.0",
"public-holidays": "^0.2.1",
"ramda": "^0.29.0",
"sharp": "^0.32.5",
"slug": "^8.2.3",
"ulid": "^2.3.0"
}
}