-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.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
{
"name": "fastly-purge-bot",
"version": "1.0.0",
"main": "lib/index.js",
"license": "MIT",
"scripts": {
"serve": "NODE_ENV=development functions-framework --source=lib/ --target=handleFastlyPurgeBot",
"dev": "NODE_ENV=development concurrently \"tsc -w\" \"nodemon --watch ./lib/ --exec yarn serve\"",
"build": "tsc",
"test": "vitest run",
"test:watch": "vitest",
"lint": "gts lint",
"clean": "gts clean",
"compile": "tsc",
"fix": "gts fix",
"postinstall": "yarn run build",
"pretest": "yarn run compile",
"posttest": "yarn run lint"
},
"engines": {
"node": "18"
},
"dependencies": {
"@google-cloud/functions-framework": "3.3.0",
"@slack/bolt": "3.13.1"
},
"devDependencies": {
"@types/express": "4.17.17",
"@types/node": "20.4.1",
"@typescript-eslint/eslint-plugin": "6.0.0",
"@typescript-eslint/parser": "6.0.0",
"concurrently": "8.0.1",
"dotenv": "16.3.1",
"eslint": "8.44.0",
"eslint-config-prettier": "8.8.0",
"eslint-plugin-import": "2.27.5",
"msw": "1.2.2",
"nodemon": "3.0.1",
"prettier": "3.0.0",
"typescript": "5.1.6",
"vitest": "0.33.0"
},
"packageManager": "[email protected]"
}