forked from wepublish/wepublish
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
91 lines (91 loc) · 2.67 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
{
"name": "@wepublish/api",
"version": "2.4.0",
"description": "API core for we.publish.",
"keywords": [
"api",
"publishing",
"media",
"newspaper",
"cms",
"subscription",
"graphql"
],
"homepage": "https://github.com/wepublish/wepublish",
"bugs": {
"url": "https://github.com/wepublish/wepublish/issues",
"email": "development@wepublish.ch"
},
"repository": {
"type": "git",
"url": "https://github.com/wepublish/wepublish.git",
"directory": "packages/api"
},
"typings": "./lib/index.d.ts",
"license": "MIT",
"scripts": {
"setup": "shx cp .env.example .env",
"build": "run-s build:*",
"build:typescript": "tsc -b ./src/tsconfig.json",
"watch": "npm-run-all copy-license --parallel watch:*",
"watch:typescript": "tsc -b ./src/tsconfig.json --watch",
"copy-license": "shx cp ../../LICENSE ./",
"clean": "shx rm -rf ./LICENSE ./lib",
"prepare": "run-s clean copy-license build",
"generate:api": "graphql-codegen -r dotenv/config --config codegen.yml",
"test": "node -r dotenv/config ./node_modules/.bin/jest --runInBand"
},
"dependencies": {
"@karma.run/utility": "^0.1.0",
"abort-controller": "^3.0.0",
"apollo-server-express": "^2.18.2",
"body-parser": "^1.19.0",
"crypto": "^1.0.1",
"dataloader": "^2.0.0",
"express": "^4.17.1",
"form-data": "^3.0.0",
"graphql": "^14.6.0",
"graphql-iso-date": "^3.6.1",
"graphql-tag": "^2.11.0",
"graphql-tools": "^5.0.0",
"jsonwebtoken": "^8.5.1",
"mandrill-api": "^1.0.45",
"ms": "^2.1.2",
"node-fetch": "^2.6.0",
"oidc-provider": "^6.23.4",
"openid-client": "^3.14.0",
"pino": "^6.11.0",
"pino-http": "^5.3.0",
"qs": "^6.9.1",
"stripe": "^8.126.0"
},
"devDependencies": {
"@graphql-codegen/cli": "^1.17.8",
"@graphql-codegen/typescript": "^1.17.9",
"@graphql-codegen/typescript-document-nodes": "^1.17.8",
"@graphql-codegen/typescript-operations": "^1.17.8",
"@types/express": "^4.17.3",
"@types/graphql": "^14.5.0",
"@types/graphql-iso-date": "^3.3.3",
"@types/graphql-upload": "^8.0.3",
"@types/jest": "^26.0.14",
"@types/jsonwebtoken": "^8.5.0",
"@types/mandrill-api": "^1.0.30",
"@types/ms": "^0.7.31",
"@types/node": "^13.7.7",
"@types/pino": "^6.3.5",
"@types/pino-http": "^5.0.6",
"@types/qs": "^6.9.1",
"apollo-server": "^2.17.0",
"apollo-server-testing": "^2.17.0",
"dotenv": "^8.2.0",
"jest": "^26.4.2",
"jest-fetch-mock": "^3.0.3",
"npm-run-all": "^4.1.5",
"shx": "^0.3.2",
"ts-jest": "^26.3.0",
"typed-emitter": "^1.3.1",
"typescript": "^3.8.3",
"weak-napi": "^2.0.2"
}
}