-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
89 lines (89 loc) · 2.94 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
{
"name": "book-link",
"version": "1.1.1",
"description": "Digitalize and share your bookshelf",
"scripts": {
"dev": "turbo run dev --parallel --no-cache",
"test": "turbo run test",
"check": "turbo run check --parallel",
"build": "turbo run lint test build check",
"build:packages": "turbo run lint test build check --filter=./packages/*",
"build:app": "turbo run lint test build check --filter=book-link-frontend",
"clean": "turbo run clean --force --parallel",
"format": "pnpm format:fix",
"format:fix": "prettier --write . --plugin-search-dir=.",
"lint": "pnpm lint:fix",
"lint:fix": "eslint . --fix --ext .ts,.vue,.js,.mjs,.cjs",
"docs:build:packages": "node scripts/packages.mjs",
"docs:build": "pnpm docs:build:packages",
"release": "standard-version",
"release:minor": "standard-version --release-as minor",
"release:patch": "standard-version --release-as patch",
"release:major": "standard-version --release-as major",
"prepare": "pnpm husky install"
},
"author": {
"name": "Simon Gattner",
"url": "https://gattner.name/",
"mastodon": "https://toot.community/@exiguus"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/exiguus/app-book-link.git"
},
"homepage": "https://github.com/exiguus/app-book-link#readme",
"devDependencies": {
"@commitlint/cli": "^17.8.1",
"@commitlint/config-conventional": "^17.8.1",
"@commitlint/prompt-cli": "^17.8.1",
"@jest/globals": "^29.7.0",
"@nuxtjs/eslint-config-typescript": "^12.1.0",
"@testing-library/jest-dom": "^5.17.0",
"@types/jest": "^29.5.12",
"@types/node": "^18.19.39",
"conventional-changelog-conventionalcommits": "^6.1.0",
"dotenv": "^16.4.5",
"dotenv-cli": "^7.4.2",
"eslint": "^8.57.0",
"eslint-config-prettier": "^8.10.0",
"eslint-config-turbo": "^0.0.10",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-sonarjs": "^0.18.0",
"eslint-plugin-testing-library": "^6.2.2",
"eslint-plugin-vue": "^9.26.0",
"husky": "^8.0.3",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-watch-typeahead": "^2.2.2",
"lint-staged": "^13.3.0",
"prettier": "^3.3.2",
"standard-version": "^9.5.0",
"ts-jest": "^29.1.5",
"turbo": "^2.0.6",
"typescript": "^5.5.2",
"typescript-plugin-css-modules": "^5.1.0"
},
"lint-staged": {
"*.@(ts|tsx|vue|mjs|cjs)": [
"pnpm format:fix",
"pnpm lint:fix"
],
"*.@(md|mdx|json)": [
"pnpm format:fix"
]
},
"packageManager": "[email protected]+sha512.f549b8a52c9d2b8536762f99c0722205efc5af913e77835dbccc3b0b0b2ca9e7dc8022b78062c17291c48e88749c70ce88eb5a74f1fa8c4bf5e18bb46c8bd83a",
"engines": {
"npm": ">=8.19.4 <10.0.0",
"node": ">=16.2.0 <21.0.0"
},
"pnpm": {
"peerDependencyRules": {
"allowedVersions": {
"@nuxt/test-utils>vitest": "0.34"
}
}
}
}