-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
111 lines (111 loc) · 4.17 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "todoist-google-sheets",
"version": "1.0.0",
"description": "UI Extension for Todoist that exports projects to Google Sheets",
"scripts": {
"prebuild": "rimraf dist",
"build": "nest build",
"start": "nest start",
"start:dev": "env-cmd --silent -f .env nest start --watch",
"start:debug": "env-cmd --silent -f .env nest start --debug --watch",
"start:prod": "env-cmd --silent -f .env node dist/main",
"clean": "rimraf dist",
"test": "jest --passWithNoTests",
"format-check": "npx prettier --check .",
"format-fix": "npx prettier --write .",
"audit": "npx better-npm-audit audit --level=moderate",
"integrity-check": "npm-run-all clean format-check lint-check ts-compile-check test",
"ts-compile-check": "tsc --noEmit",
"lint-fix": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix",
"lint-check": "eslint \"{src,apps,libs,test}/**/*.ts\"",
"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",
"database:run": "docker-compose -f docker-compose.db.yml up -d",
"typeorm": "node --require ts-node/register ./node_modules/typeorm/cli.js",
"migration:generate": "node --require ts-node/register ./node_modules/typeorm/cli.js migration:generate -d ormconfig.ts",
"migration:create": "node --require ts-node/register ./node_modules/typeorm/cli.js migration:create"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Doist/todoist-google-sheets.git"
},
"author": "Doist Developers",
"license": "MIT",
"bugs": {
"url": "https://github.com/Doist/todoist-google-sheets/issues"
},
"homepage": "https://github.com/Doist/todoist-google-sheets#readme",
"husky": {
"hooks": {
"pre-commit": "npx lint-staged"
}
},
"lint-staged": {
"*.{ts,tsx,json,html,yml,yaml,md}": "prettier --check"
},
"devDependencies": {
"@doist/eslint-config": "8.1.3",
"@doist/prettier-config": "3.0.5",
"@doist/tsconfig": "1.0.0",
"@faker-js/faker": "7.6.0",
"@jackfranklin/test-data-bot": "2.1.0",
"@nestjs/cli": "9.1.5",
"@nestjs/schematics": "9.0.3",
"@nestjs/testing": "9.2.0",
"@types/express": "4.17.17",
"@types/jest": "27.5.2",
"@types/lodash": "4.14.191",
"@types/node": "18.15.0",
"@types/supertest": "2.0.12",
"@typescript-eslint/eslint-plugin": "5.54.1",
"@typescript-eslint/parser": "5.54.1",
"dotenv": "16.0.3",
"eslint": "8.35.0",
"eslint-config-prettier": "8.7.0",
"eslint-import-resolver-webpack": "0.13.2",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-prettier": "4.2.1",
"husky": "8.0.3",
"jest": "27.5.1",
"mockdate": "3.0.5",
"msw": "1.1.0",
"npm-run-all": "4.1.5",
"prettier": "2.8.4",
"rimraf": "3.0.2",
"source-map-support": "0.5.21",
"supertest": "6.3.3",
"ts-jest": "27.1.5",
"ts-loader": "9.4.2",
"ts-node": "10.9.1",
"tsconfig-paths": "4.1.2",
"typescript": "4.9.5"
},
"engines": {
"node": ">=16.11.1",
"npm": ">=8.0.0"
},
"prettier": "@doist/prettier-config",
"dependencies": {
"@doist/integrations-common": "2.0.0",
"@doist/todoist-api-typescript": "2.1.2",
"@doist/ui-extensions-core": "4.1.1",
"@doist/ui-extensions-server": "3.2.1",
"@nestjs/axios": "0.1.1",
"@nestjs/common": "9.2.0",
"@nestjs/config": "2.2.0",
"@nestjs/core": "9.2.0",
"@nestjs/platform-express": "9.2.0",
"@nestjs/typeorm": "9.0.1",
"axios": "0.27.2",
"dayjs": "1.11.7",
"env-cmd": "10.1.0",
"googleapis": "109.0.1",
"lodash": "4.17.21",
"mysql": "2.18.1",
"reflect-metadata": "0.1.13",
"rxjs": "7.5.7",
"typeorm": "0.3.12"
}
}