This repository has been archived by the owner on Nov 19, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
69 lines (69 loc) · 2 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
{
"name": "gcf-starter-kit",
"version": "0.0.2",
"engines": {
"node": ">10.0.0"
},
"description": "Put your description here and change the name property",
"main": "build/app.js",
"types": "build/app.d.ts",
"files": [
"build/**/*.ts",
"build/**/*.js",
"build/*.js",
"ReadMe.md"
],
"scripts": {
"prebuild": " rimraf build/*",
"build": "tsc",
"postbuild": "",
"predeploy": "run-s build ",
"deploy": "gcloud functions deploy nameOfGcfFunction --trigger-http --runtime=nodejs10",
"deploy:staging": "run-s setProjectStaging deploy",
"deploy:production": "run-s setProjectProduction deploy",
"show-deploy": "gcloud config list project",
"setProjectStaging": "gcloud config set project xxx-name-of-staging-project",
"setProjectProduction": "gcloud config set project xxx-name-of-production-project",
"test": "mocha ",
"test:cov": "nyc mocha ",
"test:unit": "npm --silent run test -- -- -g UNIT",
"test:int": "npm run test -- -- -g INTEGRATION"
},
"repository": {
"type": "git",
"url": "[email protected]:Rolias/ts-starter-kit.git"
},
"keywords": [
"typescript",
"starter-kit"
],
"author": "Your Name here",
"license": "GPL-3.0-or-later",
"dependencies": {},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^0.1.3",
"@types/chai": "^4.2.4",
"@types/express": "^4.17.2",
"@types/mocha": "^5.2.7",
"@types/node": "^12.12.6",
"@types/proxyquire": "^1.3.28",
"@types/sinon": "^7.5.0",
"@types/sinon-chai": "3.2",
"@typescript-eslint/eslint-plugin": "^2.6.1",
"@typescript-eslint/parser": "^2.6.1",
"chai": "^4.2.0",
"eslint": "^6.6.0",
"eslint-config-prettier": "^6.5.0",
"eslint-plugin-prettier": "x",
"mocha": "^6.2.2",
"npm-run-all": "^4.1.5",
"nyc": "^14.1.1",
"prettier": "^1.18.2",
"proxyquire": "^2.1.3",
"rimraf": "^3.0.0",
"sinon": "^7.5.0",
"sinon-chai": "3.3",
"ts-node": "^8.4.1",
"typescript": "^3.7.2"
}
}