This repository was archived by the owner on Dec 27, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.9 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.9 KB
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
{
"name": "hyperdoc",
"version": "0.0.1",
"description": "Hyperdoc - A Serverless Content Repository",
"author": "Ezequiel Foncubierta <ezequiel.foncubierta@gmail.com>",
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/efoncubierta/hyperdoc.git"
},
"bugs": {
"url": "https://github.com/efoncubierta/hyperdoc/issues"
},
"homepage": "https://hyperdoc.io",
"license": "Apache-2.0",
"dependencies": {
"apollo-server-lambda": "^1.3.6",
"deepmerge": "^2.1.0",
"fp-ts": "^1.6.1",
"graphql": "^0.13.2",
"graphql-tools": "^3.0.1",
"jsonschema": "^1.2.4",
"moment": "^2.22.1",
"source-map-support": "^0.5.0"
},
"devDependencies": {
"@types/aws-lambda": "^8.10.5",
"@types/aws-sdk": "^2.7.0",
"@types/chai": "^4.1.3",
"@types/chai-as-promised": "^7.1.0",
"@types/deepmerge": "^2.1.0",
"@types/graphql": "^0.13.1",
"@types/mocha": "^5.2.0",
"@types/node": "^8.10.13",
"@types/uuid": "^3.4.3",
"aws-sdk-mock": "^2.0.0",
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"codecov": "^3.0.2",
"faker": "^4.1.0",
"mocha": "^5.1.1",
"nyc": "^11.7.3",
"serverless-webpack": "^5.1.5",
"ts-loader": "^4.3.0",
"ts-node": "^6.0.3",
"typescript": "^2.5.2",
"webpack": "^4.8.3"
},
"scripts": {
"link:eventum-sdk": "npm link ../eventum-sdk-js",
"build": "./node_modules/.bin/tsc",
"prepare": "npm run link:eventum-sdk && npm run build",
"test:all": "./node_modules/.bin/mocha -r ts-node/register test/**/*.spec.ts",
"test:nyc": "./node_modules/.bin/nyc -e '.ts' --r html -r lcov -r text npm run test:all",
"clean": "rm -rf .nyc_output .serverless .webpack coverage node_modules dist",
"codecov": "./node_modules/.bin/codecov"
},
"nyc": {
"exclude": [
"./test/**/*.ts"
],
"include": [
"./src/**/*.ts"
],
"all": true
}
}