-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 2.11 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
{
"name": "cloud_server",
"version": "1.0.0",
"description": "Skeleton for javascript projects",
"main": "./dist/server.js",
"repository": "https://github.com/erickjosue8916/cloud-server.git",
"author": "Erick Saravia <[email protected]>",
"license": "MIT",
"scripts": {
"start": "node ./dist/server.js",
"dev": "ts-node-dev -r dotenv/config ./src/server.ts",
"build": "tsc",
"lint": "eslint --ignore-path .gitignore . --ext .ts",
"lint:fix": "yarn lint -- --fix",
"test": "jest --verbose",
"commit": "git add . && cz",
"build:watch": "tsc --watch",
"prettier": "prettier --config .prettierrc 'src/**/*.ts' --write",
"prettier:watch": "onchange -a 'src/**/*.ts' -a 'tests/**/*.ts' -a 'scripts/**/*.ts' -- prettier --write {{changed}}",
"deploy:run": "gcloud run deploy cloud-run-server ",
"deploy:app": ""
},
"keywords": [
"javascript",
"typescript",
"gcp",
"express"
],
"husky": {
"hooks": {
"pre-commit": "yarn lint",
"prepare-commit-msg": "exec < /dev/tty && git cz --hook || true"
}
},
"devDependencies": {
"@types/cors": "^2.8.12",
"@types/express": "^4.17.12",
"@types/jest": "^27.0.1",
"@types/node": "^16.0.0",
"@types/supertest": "^2.0.11",
"@typescript-eslint/eslint-plugin": "^4.28.2",
"@typescript-eslint/parser": "^4.28.2",
"commitizen": "^4.2.4",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"eslint": "^7.30.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-jest": "^24.3.6",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"express": "^4.17.1",
"husky": "^7.0.1",
"jest": "^27.0.6",
"onchange": "^7.1.0",
"prettier": "^2.3.2",
"supertest": "^6.1.3",
"ts-jest": "^27.0.3",
"ts-node-dev": "^1.1.8",
"typescript": "^4.3.5"
},
"dependencies": {
"@google-cloud/pubsub": "^2.16.5",
"@types/node-fetch": "^2.5.12",
"node-fetch": "^2.6.1"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}