-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.79 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 1.79 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
68
69
70
71
{
"name": "micro-service",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "jest",
"dev": "nodemon --watch 'src/**/*' -e ts,tsx --exec ts-node ./src/server.ts",
"types": "npx typesync && npm i",
"pub": "nodemon --watch 'src/**/*' -e ts,tsx --exec ts-node ./src/pubsubSample.ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@google-cloud/pubsub": "^1.2.0",
"@google-cloud/storage": "^4.2.0",
"dotenv": "^8.2.0",
"koa": "^2.11.0",
"koa-bodyparser": "^4.2.1",
"koa-cors": "0.0.16",
"koa-helmet": "^5.2.0",
"koa-router": "^7.4.0",
"mongoose": "^5.8.1"
},
"devDependencies": {
"@hapi/joi": "^17.0.2",
"@types/eslint": "^6.1.3",
"@types/eslint-plugin-prettier": "^2.2.0",
"@types/hapi__joi": "^16.0.6",
"@types/jest": "^24.0.25",
"@types/koa": "^2.11.0",
"@types/koa-bodyparser": "^4.3.0",
"@types/koa-cors": "0.0.0",
"@types/koa-router": "^7.0.42",
"@types/mongoose": "^5.5.41",
"@types/nodemon": "^1.19.0",
"@types/prettier": "^1.19.0",
"@types/supertest": "^2.0.8",
"@typescript-eslint/eslint-plugin": "^2.15.0",
"@typescript-eslint/parser": "^2.15.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.9.0",
"eslint-plugin-prettier": "^3.1.2",
"jest": "^24.9.0",
"nodemon": "^2.0.2",
"prettier": "^1.19.1",
"supertest": "^4.0.2",
"ts-jest": "^24.2.0",
"ts-node": "^8.5.4",
"typescript": "^3.7.3"
},
"jest": {
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"transform": {
"^.+\\.(ts|tsx)$": "ts-jest"
},
"globals": {
"ts-jest": {
"tsConfigFile": "tsconfig.json"
}
},
"testMatch": [
"**/__tests__/*.+(ts|tsx|js)"
]
}
}