-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.71 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
{
"name": "ynab-sync-monorepo",
"private": true,
"version": "0.0.1",
"description": "Sync for YNAB",
"module": "dist/index.js",
"main": "dist/index.js",
"scripts": {
"build": "pnpm run --recursive build",
"build:dev": "pnpm run --recursive build:dev",
"changeset": "changeset",
"ci:pkg": "pnpm run build && pnpm --recursive ci:pkg",
"ci:publish": "pnpm run build && pnpm changeset publish",
"ci:version": "pnpm run changeset version && pnpm install --frozen-lockfile=false",
"dev": "pnpm run build:dev && pnpm run --recursive dev",
"lint:fix": "pnpm run --recursive lint:fix",
"lint": "pnpm run --recursive lint",
"outdated": "pnpm --recursive outdated",
"pkg": "pnpm run build && pnpm --recursive pkg",
"preinstall": "npx only-allow pnpm",
"test": "pnpm run --recursive test"
},
"engines": {
"pnpm": "^7.0.0",
"node": "^16.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/geofflamrock/ynab-sync.git"
},
"keywords": [
"ynab"
],
"author": "Geoff Lamrock",
"license": "MIT",
"bugs": {
"url": "https://github.com/geofflamrock/ynab-sync/issues"
},
"homepage": "https://github.com/geofflamrock/ynab-sync#readme",
"devDependencies": {
"@changesets/cli": "^2.16.0",
"@types/node": "^14.14.41",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"eslint": "^7.24.0",
"eslint-config-prettier": "^8.2.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.3.5",
"eslint-plugin-prefer-arrow": "^1.2.3",
"eslint-plugin-prettier": "^3.4.0",
"prettier": "^2.2.1",
"typescript": "^4.2.4"
},
"directories": {
"doc": "docs"
}
}