-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.2 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 2.2 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
72
{
"name": "help-post-comment-count",
"version": "1.1.0",
"description": "Sets comment count on helpPost when a comment is added or removed.",
"main": "index.js",
"scripts": {
"build": "rimraf __build__ && babel ./src -d ./__build__ --copy-files --ignore ./**/__tests__",
"postbuild": "cp -v .env package.json package-lock.json __build__",
"predeploy:api:thatusBot": "npm run build",
"deploy:api:thatusBot": "functions-framework --target=handler --port=8086 --source=./__build__",
"start:watch": "nodemon -e env,js,json,graphql --watch src --ignore '*.test.js' --exec npm run deploy:api:thatusBot",
"test": "jest --passWithNoTests",
"lint": "eslint 'src/**/*.js'",
"validate": "concurrently npm:test npm:lint npm:build"
},
"engines": {
"node": "16"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ThatConference/that-api-functions.git"
},
"keywords": [
"firestore",
"trigger",
"nodejs"
],
"author": "THAT Conference",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/ThatConference/that-api-functions/issues"
},
"homepage": "https://github.com/ThatConference/that-api-functions#readme",
"dependencies": {
"@google-cloud/firestore": "^6.5.0",
"@sentry/node": "^7.50.0",
"debug": "^4.3.4",
"dotenv": "^16.0.3"
},
"devDependencies": {
"@babel/cli": "^7.21.5",
"@babel/core": "^7.21.5",
"@babel/eslint-parser": "^7.21.3",
"@babel/node": "^7.20.7",
"@babel/preset-env": "^7.21.5",
"@google-cloud/functions-framework": "^3.2.0",
"babel-jest": "^29.5.0",
"concurrently": "^8.0.1",
"eslint": "^8.39.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-babel": "^5.3.1",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-prettier": "^4.2.1",
"jest-cli": "^29.5.0",
"nodemon": "^2.0.22",
"prettier-eslint": "^15.0.1",
"prettier-eslint-cli": "^7.1.0"
},
"husky": {
"hooks": {
"pre-push": "npm run validate"
}
},
"jest": {
"testEnvironment": "node",
"verbose": true,
"rootDir": "./src",
"coverageDirectory": "../__testCoverage__"
}
}