-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 972 Bytes
/
package.json
File metadata and controls
47 lines (47 loc) · 972 Bytes
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
{
"name": "spoolhub",
"private": true,
"scripts": {
"build": "turbo build",
"dev": "turbo dev",
"lint": "turbo lint",
"format": "prettier --write \"**/*.{js,mjs,cjs,jsx,ts,tsx,html,vue,css,less,scss,htm,hbs,json,graphql,gql,md,markdown,mdx,yaml,yml}\"",
"turbo:update": "pnpx @turbo/codemod@latest update"
},
"devDependencies": {
"@repo/eslint-config": "workspace:*",
"@repo/typescript-config": "workspace:*",
"cross-env": "^7.0.3",
"prettier": "^3.2.5",
"turbo": "^1.12.4",
"vercel": "^33.5.1"
},
"engines": {
"node": ">=18"
},
"prettier": {
"singleQuote": true,
"trailingComma": "all",
"printWidth": 120,
"useTabs": true
},
"eslintConfig": {
"ignorePatterns": [
"apps/**",
"packages/**"
],
"extends": [
"@repo/eslint-config/library.js"
],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"project": true
}
},
"postcss": {
"plugins": {
"tailwindcss": {},
"autoprefixer": {}
}
}
}