-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
32 lines (32 loc) · 937 Bytes
/
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
{
"name": "fcc",
"private": true,
"author": "Nathan Lardizabal <nate@njil.dev>",
"maintainers": [
"Nathan Lardizabal <nate@njil.dev>"
],
"type": "module",
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"lint": "turbo run lint",
"format": "prettier --write .",
"clean": "rm -rf node_modules package-lock.json apps/*/node_modules apps/*/package-lock.json apps/*/.svelte-kit apps/*/.turbo",
"fresh": "npm run format && npm run clean && npm i --legacy-peer-deps",
"fresh:start": "npm run fresh && npm run dev",
"cms:deploy": "cd apps/cms && sanity deploy",
"changeset": "npx changeset && npx changeset status --verbose && npx changeset version"
},
"devDependencies": {
"@changesets/cli": "^2.27.1",
"eslint": "^8.48.0",
"prettier": "^3.0.3",
"prettier-plugin-svelte": "^3.0.3",
"tsconfig": "*",
"turbo": "latest"
},
"packageManager": "npm@9.5.0",
"workspaces": [
"apps/*"
]
}