forked from skillrecordings/products
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
111 lines (111 loc) · 2.41 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": "turbo-playground",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "turbo run build postbuild",
"build:ci": "turbo run build test lint postbuild",
"pre-commit": "lint-staged",
"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",
"lint": "TIMING=1 eslint --fix",
"test": "turbo run test",
"start": "turbo run start",
"changeset": "changeset",
"release": "changeset publish",
"version:canary": "changeset version --snapshot canary",
"release:canary": "changeset publish --tag canary",
"prepare": "husky install"
},
"author": "Joel Hooks",
"license": "ISC",
"lint-staged": {
"**/*.{ts,tsx,js,jsx}": [
"pnpm run format",
"pnpm run lint"
]
},
"devDependencies": {
"@changesets/changelog-github": "^0.2.7",
"@changesets/cli": "^2.16.0",
"cypress": "^8.2.0",
"husky": "^7.0.1",
"lint-staged": "^10.5.3",
"plop": "^2.7.4",
"prettier": "^2.3.2",
"tsdx": "^0.14.1",
"turbo": "^0.8.4"
},
"turbo": {
"baseBranch": "origin/main",
"pipeline": {
"build": {
"dependsOn": [
"^build"
],
"outputs": [
"dist/**",
".next/**",
"!.next/cache/**/*"
]
},
"postbuild": {
"dependsOn": [
"build"
],
"outputs": [
"public/sitemap.xml",
"public/robots.txt"
]
},
"test": {
"dependsOn": [
"^build"
]
},
"deploy": {
"dependsOn": [
"build",
"test",
"lint"
]
},
"lint": {
"outputs": [],
"dependsOn": [
"^build"
]
},
"start": {
"dependsOn": [
"^build"
]
},
"integration": {
"outputs": [],
"dependsOn": [
"^build"
]
},
"dev": {
"cache": false
},
"clean": {
"cache": false
}
}
},
"prettier": {
"printWidth": 80,
"tabWidth": 2,
"useTabs": false,
"semi": false,
"singleQuote": true,
"trailingComma": "all",
"bracketSpacing": false,
"jsxBracketSameLine": false
}
}