-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1.04 KB
/
package.json
File metadata and controls
35 lines (35 loc) · 1.04 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
{
"name": "bm-bootstrap",
"version": "0.0.0",
"private": true,
"engines": {
"node": "^16.0.0"
},
"type": "module",
"scripts": {
"start": "DEBUG=bm-bootstrap DEBUG_DEPTH=20 node ./src/app.js",
"local": "DEBUG=bm-bootstrap DEBUG_DEPTH=20 PORT=$npm_package_config_port nodemon --watch src ./src/app.js",
"serve": "ngrok http $npm_package_config_port",
"test-url": "./scripts/test-url",
"QUALITY______________________________________________________________": "",
"lint": "eslint --fix 'src/**/*.js' --quiet",
"format": "prettier --write 'src/**/*.{js,json}'"
},
"dependencies": {
"businessmessages": "github:google-business-communications/nodejs-businessmessages#d6b0d867693e2ff3cd795442c024eb7fb15c5338",
"debug": "4.3.3",
"googleapis": "92.0.0",
"uuid": "8.3.2"
},
"devDependencies": {
"eslint": "8.7.0",
"eslint-config-google": "0.14.0",
"eslint-plugin-prettier": "4.0.0",
"ngrok": "4.3.0",
"nodemon": "2.0.15",
"prettier": "2.5.1"
},
"config": {
"port": "3000"
}
}