-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
138 lines (138 loc) · 4.27 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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
{
"name": "api.goodchat",
"version": "1.7.0",
"description": "omnichannel chat solution built for structured integrations with transactional systems",
"main": "dist/bin/serve.js",
"scripts": {
"prebuild": "npm run clean",
"build": "tsc -p .",
"postbuild": "npm run copy:assets",
"start": "node dist/bin/serve.js",
"staging": "NODE_ENV=staging npm start",
"production": "NODE_ENV=production npm start",
"predev": "npm run clean",
"dev": "NODE_ENV=development ts-node-dev ./bin/serve.ts",
"pretest": "npm run clean",
"test": "mocha",
"test:fast": "npm run test -- --bail",
"test:coverage": "nyc npm run test",
"copy:assets": "rsync -rR lib/routes/graphql/schema.gql ./locales ./tsconfig.json ./dist",
"clean": "rm -rf dist",
"document": "typedoc --includeVersion",
"doctoc": "npx doctoc README.md",
"postinstall": "npm run prisma:generate",
"prisma:generate": "npx prisma generate",
"db:migrate:new": "NODE_ENV=development kankyo -f exec -- prisma migrate dev --create-only --preview-feature",
"db:migrate:dev": "NODE_ENV=development kankyo -f exec -- prisma migrate dev --preview-feature",
"db:migrate:test": "NODE_ENV=test kankyo -f exec -- prisma migrate dev --preview-feature",
"db:migrate:prod": "kankyo exec -- prisma migrate deploy --preview-feature",
"lint": "eslint . --ext .ts",
"studio": "NODE_ENV=development kankyo -f exec -- prisma studio",
"codecov": "codecov"
},
"repository": {
"type": "git",
"url": "git+https://github.com/crossroads/api.goodchat.git"
},
"nyc": {
"extension": [
".ts"
],
"include": [
"lib/**/*.ts"
],
"reporter": [
"html",
"lcov"
],
"all": true
},
"keywords": [
"omnichannel",
"crossroads",
"chat",
"goodcity"
],
"author": "Crossroads Foundation",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/crossroads/api.goodchat/issues"
},
"homepage": "https://github.com/crossroads/api.goodchat#readme",
"devDependencies": {
"@apollo/client": "^3.3.14",
"@types/axios": "^0.14.0",
"@types/chai": "^4.2.14",
"@types/chai-as-promised": "^7.1.3",
"@types/debug": "^4.1.5",
"@types/faker": "^5.1.7",
"@types/figlet": "^1.5.1",
"@types/i18n": "^0.12.0",
"@types/ioredis": "^4.19.3",
"@types/js-yaml": "^3.12.5",
"@types/koa": "^2.11.5",
"@types/koa__router": "^8.0.3",
"@types/koa-bodyparser": "^4.3.0",
"@types/koa-compose": "^3.2.5",
"@types/koa-json": "^2.0.18",
"@types/lodash": "^4.14.162",
"@types/mocha": "^8.0.3",
"@types/node": "^14.14.22",
"@types/require-dir": "^1.0.1",
"@types/sinon": "^9.0.8",
"@types/sinon-chai": "^3.2.5",
"@types/sunshine-conversations-client": "git://github.com/patrixr/types-sunshine-conversations-client.git#master",
"@types/supertest": "^2.0.10",
"@typescript-eslint/eslint-plugin": "^4.17.0",
"@typescript-eslint/parser": "^4.17.0",
"apollo-server-testing": "^2.22.2",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"codecov": "^3.8.1",
"cross-fetch": "^3.1.4",
"eslint": "^7.21.0",
"faker": "^5.4.0",
"find-port": "^2.0.1",
"fishery": "^1.2.0",
"mocha": "^8.2.0",
"ngrok": "^4.0.1",
"nock": "^13.0.11",
"nyc": "^15.1.0",
"prisma-dbml-generator": "^0.5.0",
"sinon": "^9.2.1",
"sinon-chai": "^3.5.0",
"supertest": "^5.0.0",
"supertest-koa-agent": "^0.3.2",
"timekeeper": "^2.2.0",
"ts-node-dev": "^1.0.0",
"tsc-watch": "^4.2.9",
"typed-emitter": "^1.3.1",
"typedoc": "^0.20.18",
"typescript": "^4.2.2",
"ws": "^6.2.1"
},
"dependencies": {
"@koa/router": "^9.4.0",
"@prisma/client": "^2.25.0",
"apollo-server-koa": "^2.22.2",
"axios": "^0.21.1",
"bullmq": "^1.21.0",
"debug": "^4.2.0",
"figlet": "^1.5.0",
"graphql-redis-subscriptions": "^2.3.1",
"graphql-scalars": "^1.9.0",
"i18n": "^0.13.2",
"ioredis": "^4.26.0",
"kankyo": "^1.6.1",
"koa": "^2.13.0",
"koa-bodyparser": "^4.3.0",
"koa-compose": "^4.1.0",
"koa-json": "^2.0.2",
"lodash": "^4.17.20",
"lodash-patterns": "^1.1.6",
"prisma": "^2.17.0",
"redis": "^3.0.2",
"require-dir": "^1.2.0",
"sunshine-conversations-client": "^9.0.1"
}
}