-
Notifications
You must be signed in to change notification settings - Fork 30
/
package.json
69 lines (69 loc) · 2.03 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
{
"name": "@skillrecordings/products",
"version": "1.0.0",
"description": "",
"homepage": "https://github.com/skillrecordings/products/",
"repository": {
"type": "git",
"url": "https://github.com/skillrecordings/products.git"
},
"license": "ISC",
"author": "Joel Hooks",
"main": "index.js",
"scripts": {
"build": "turbo run generate build postbuild",
"build:ci": "turbo run generate test lint",
"build:dev": "turbo run build test lint",
"changeset": "changeset",
"clean": "rm -rf node_modules && pnpm -r exec -- rm -rf .turbo node_modules .next dist",
"format": "pnpm run format:index && pnpm run format:src",
"format:index": "prettier --write \"*.{js,ts,json,md}\"",
"format:src": "prettier --write",
"generate": "turbo run generate",
"lint": "TIMING=1 eslint --fix --cache",
"manypkg": "manypkg",
"pre-commit": "lint-staged",
"prepare": "husky install",
"release": "changeset publish",
"release:canary": "changeset publish --tag canary",
"sort": "npx sort-package-json \"package.json\" \"packages/*/package.json\" \"apps/*/package.json\"",
"start": "turbo run start",
"test": "turbo run test",
"version:canary": "changeset version --snapshot canary"
},
"lint-staged": {
"**/*.{ts,tsx,js,jsx}": [
"prettier --write --list-different"
]
},
"prettier": {
"bracketSpacing": false,
"jsxBracketSameLine": false,
"printWidth": 80,
"semi": false,
"singleQuote": true,
"tabWidth": 2,
"trailingComma": "all",
"useTabs": false
},
"dependencies": {
"@changesets/changelog-github": "^0.2.8",
"@changesets/cli": "^2.26.1",
"@manypkg/cli": "^0.19.2",
"eslint": "^8.41.0",
"eslint-config-skill-recordings": "workspace:*",
"husky": "^7.0.4",
"lint-staged": "^11.2.6",
"plop": "^2.7.6",
"prettier": "^2.8.8",
"tsdx": "^0.14.1",
"turbo": "~1.13.3",
"typescript": "5.5.4"
},
"packageManager": "pnpm@8.9.0",
"manypkg": {
"ignoredRules": [
"INTERNAL_MISMATCH"
]
}
}