-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
59 lines (59 loc) · 1.85 KB
/
package.json
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
{
"name": "cloud-invoicing",
"version": "1.1.0",
"main": "server.ts",
"repository": "https://github.com/joanroig/cloud-invoicing.git",
"author": "Joan Roig <joanroigsegura@gmail.com>",
"license": "MIT",
"scripts": {
"build": "rimraf ./build && tsc -p .",
"start": "node build/server.js",
"start:once": "npx ts-node src/index.ts",
"start:dev": "nodemon",
"gcloud:deploy": "npm run build && dotenv cross-var -- gcloud app deploy --quiet --project %project_id% --version=staging",
"gcloud:logs": "dotenv cross-var -- gcloud app logs read --project %project_id%",
"gcloud:list-files-for-upload": "gcloud meta list-files-for-upload",
"gcp-build": "",
"lint": "eslint . --ext .ts",
"format": "eslint . --ext .ts --fix",
"format:staged": "lint-staged"
},
"dependencies": {
"@googleapis/drive": "^8.4.0",
"config": "^3.3.9",
"cross-var": "^1.1.0",
"currency.js": "^2.0.4",
"dotenv": "^16.3.1",
"dotenv-cli": "^7.3.0",
"express": "^4.18.2",
"google-auth-library": "^9.4.1",
"google-spreadsheet": "^4.1.1",
"lint-staged": "^15.2.0",
"moment": "^2.29.4",
"nodemon": "^3.0.2",
"pdfmake": "^0.2.8",
"ts-node": "^10.9.2",
"typescript": "^5.3.3",
"winston": "^3.11.0"
},
"devDependencies": {
"@commitlint/cli": "18.4.3",
"@commitlint/config-conventional": "18.4.3",
"@types/config": "3.3.3",
"@types/express": "4.17.21",
"@types/google-spreadsheet": "3.3.2",
"@types/node": "20.10.4",
"@types/pdfmake": "0.2.8",
"@typescript-eslint/eslint-plugin": "6.14.0",
"@typescript-eslint/parser": "6.14.0",
"eslint": "8.55.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-prettier": "5.0.1",
"husky": "8.0.3",
"prettier": "3.1.1",
"rimraf": "5.0.5"
},
"lint-staged": {
"src/**/*.{js,ts}": "eslint --cache --fix"
}
}