-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.52 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 2.52 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
75
76
77
78
79
80
81
82
83
{
"name": "brinks",
"version": "2.7.0",
"description": "Our order taker",
"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:brinks": "npm run build",
"deploy:api:brinks": "functions-framework --target=handler --source=./__build__ --debug --port=8080",
"start:watch": "nodemon -e env,js,json,graphql --watch src --ignore '*.test.js' --exec npm run deploy:api:brinks",
"run:brinks": "nodemon -e env,js,json,graphql --watch src --ignore '*.test.js' --exec npm run deploy:api:brinks",
"test": "jest --coverage --passWithNoTests",
"lint": "eslint 'src/**/*.js'",
"validate": "concurrently npm:test npm:lint npm:build"
},
"engines": {
"node": ">=16 <21"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ThatConference/that-api-functions.git"
},
"keywords": [
"webhook",
"stripe",
"nodejs",
"orders"
],
"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": "^7.1.0",
"@sentry/node": "^7.84.0",
"@thatconference/api": "^4.5.0",
"dateformat": "~4.6.3",
"debug": "^4.3.4",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"graphql": "^16.8.1",
"node-fetch": "~2.6.13",
"postmark": "^3.11.0",
"response-time": "^2.3.2",
"stripe": "^14.7.0"
},
"devDependencies": {
"@babel/cli": "^7.23.4",
"@babel/core": "^7.23.5",
"@babel/eslint-parser": "^7.23.3",
"@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"
},
"husky": {
"hooks": {
"pre-push": "npm run validate"
}
},
"jest": {
"testEnvironment": "node",
"verbose": true,
"rootDir": "./src",
"coverageDirectory": "../__testCoverage__"
}
}