-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.17 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 2.17 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
73
74
{
"name": "beam",
"version": "0.0.2",
"description": "Development cli and emulator boot-strapper",
"main": "index.js",
"scripts": {
"build": "rimraf __build__ && babel ./src -d ./__build__ --copy-files --ignore ./**/__tests__",
"predeploy:api:dev-that": "npm run build",
"deploy:api:dev-that": "functions-framework --target=handler --port=9090 --source=./__build__",
"start:watch": "nodemon -e env,js,json,graphql --watch src --ignore '*.test.js' --exec npm run deploy:api:dev-that",
"test": "jest --coverage --passWithNoTests",
"lint": "eslint 'src/**/*.js'",
"validate": "concurrently npm:test npm:lint npm:build"
},
"engines": {
"node": ">=14 <21"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ThatConference/that-api-functions.git"
},
"keywords": [
"webhook",
"nodejs",
"stripe",
"pubsub"
],
"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",
"devDependencies": {
"@babel/cli": "^7.23.4",
"@babel/core": "^7.23.5",
"@babel/node": "^7.22.19",
"@babel/preset-env": "^7.23.5",
"@google-cloud/functions-framework": "^3.3.0",
"babel-jest": "^29.7.0",
"concurrently": "^8.2.2",
"eslint": "^8.54.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-babel": "^5.3.1",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-jest": "^27.6.0",
"eslint-plugin-prettier": "^5.0.1",
"husky": "^4.3.8",
"jest-cli": "^29.7.0",
"nodemon": "^3.0.1",
"prettier-eslint": "^16.1.2",
"prettier-eslint-cli": "^8.0.1"
},
"dependencies": {
"@babel/eslint-parser": "^7.23.3",
"@google-cloud/pubsub": "^4.0.7",
"commander": "^11.1.0",
"dotenv": "^16.3.1",
"node-fetch": "^2.7.0",
"stripe": "^14.7.0"
},
"husky": {
"hooks": {
"pre-push": "npm run validate"
},
"jest": {
"testEnvironment": "node",
"verbose": true,
"rootDir": "./src",
"coverageDirectory": "../__testCoverage__"
}
}
}