-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.08 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
{
"name": "cloud-functions-starter",
"version": "1.0.0",
"description": "cloud functions starter",
"main": "build/src/index.js",
"repository": "https://github.com/yashigani/cloud-functions-starter",
"author": "yashigani",
"license": "MIT",
"scripts": {
"lint": "gts lint",
"clean": "gts clean",
"compile": "tsc",
"fix": "gts fix",
"prepare": "yarn run compile",
"pretest": "yarn run compile",
"posttest": "yarn run lint",
"test": "jest",
"start": "functions-framework --target=echo --source=build/src/ --port=8000",
"watch": "concurrently \"tsc -w\" \"nodemon --watch ./build/ --exec yarn start\""
},
"dependencies": {
"@google-cloud/functions-framework": "^1.7.1",
"supertest": "^6.1.3"
},
"devDependencies": {
"@types/express": "^4.17.11",
"@types/jest": "^26.0.20",
"@types/node": "^14.11.2",
"@types/supertest": "^2.0.10",
"concurrently": "^6.0.0",
"eslint-plugin-jest": "^24.2.1",
"gts": "^3.1.0",
"jest": "^26.6.3",
"nodemon": "^2.0.7",
"ts-jest": "^26.5.3",
"typescript": "^4.0.3"
}
}