-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.22 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.22 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
{
"name": "request",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "tsc",
"dev": "node ./dist/index.js",
"check": "npm run format:check && npm run lint:check",
"up": "npm run format && npm run lint",
"test": "NODE_ENV=test jest --detectOpenHandles",
"test:dev": "npm run test -- --watchAll",
"test:ci": "npm run test -- --ci --runInBand",
"lint": "eslint --fix .",
"lint:check": "eslint .",
"format": "prettier --write './**/*.{js,md,json,yaml,yml,ts}' --config ./.prettierrc.json",
"format:check": "prettier --check './**/*.{js,md,json,yaml,yml,ts}' --config ./.prettierrc.json"
},
"license": "ISC",
"devDependencies": {
"@types/express": "^4.17.16",
"@types/jest": "^29.2.5",
"@typescript-eslint/eslint-plugin": "^5.48.1",
"@typescript-eslint/parser": "^5.48.1",
"eslint": "^8.31.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.3.1",
"prettier": "^2.8.2",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"typescript": "^4.9.4"
},
"dependencies": {
"@google-cloud/pubsub": "^3.2.1",
"axios": "^1.3.3",
"dotenv": "^16.0.3",
"express": "^4.18.2"
}
}