-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
70 lines (70 loc) · 2.22 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
60
61
62
63
64
65
66
67
68
69
70
{
"name": "account-balance-to-google-spreadsheet",
"version": "1.0.0",
"description": "Modular app to fetch transaction history and account balance from the bank API and write to Google Spreadsheet.",
"author": "Prokop Simek (prokop@dxheroes.io)",
"license": "wtfpl",
"scripts": {
"build": "rimraf dist && tsc -p tsconfig.build.json",
"format": "prettier --write \"src/**/*.ts\"",
"start": "ts-node -r tsconfig-paths/register src/main.ts",
"start:dev": "tsc-watch -p tsconfig.build.json --onSuccess \"node dist/main.js\"",
"start:debug": "tsc-watch -p tsconfig.build.json --onSuccess \"node --inspect-brk dist/main.js\"",
"start:prod": "node dist/main.js",
"lint": "eslint 'src/**/*.ts'",
"lint:fix": "lint --fix",
"test": "jest",
"test:watch": "jest --watch",
"test:cov": "jest --coverage",
"test:debug": "node --inspect-brk -r tsconfig-paths/register -r ts-node/register node_modules/.bin/jest --runInBand",
"test:e2e": "jest --config ./test/jest-e2e.json"
},
"dependencies": {
"@nestjs/common": "6.11.11",
"@nestjs/core": "6.11.11",
"@nestjs/platform-express": "6.11.11",
"axios": "0.29.0",
"dotenv": "8.6.0",
"google-spreadsheet": "2.0.9",
"nest-schedule": "0.6.4",
"querystring": "0.2.1",
"reflect-metadata": "0.2.2",
"rimraf": "3.0.2",
"rxjs": "6.6.7"
},
"devDependencies": {
"@nestjs/testing": "6.11.11",
"@types/dotenv": "6.1.1",
"@types/express": "4.17.21",
"@types/jest": "25.2.3",
"@types/node": "12.20.55",
"@types/supertest": "2.0.16",
"@typescript-eslint/eslint-plugin": "2.34.0",
"@typescript-eslint/parser": "2.34.0",
"eslint": "6.8.0",
"eslint-config-prettier": "6.15.0",
"eslint-plugin-prettier": "3.4.1",
"jest": "25.5.4",
"prettier": "1.19.1",
"supertest": "4.0.2",
"ts-jest": "24.3.0",
"ts-node": "8.10.2",
"tsc-watch": "4.6.2",
"tsconfig-paths": "3.15.0",
"typescript": "3.9.10"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "src",
"testRegex": ".spec.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"coverageDirectory": "../coverage",
"testEnvironment": "node"
}
}