-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
36 lines (36 loc) · 876 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
33
34
35
36
{
"name": "superflare",
"version": "0.0.0",
"private": true,
"workspaces": [
"apps/*",
"packages/*",
"templates/*"
],
"scripts": {
"build": "turbo run build --filter='./packages/*' --parallel",
"dev": "turbo run dev --parallel --filter='!./templates/*'",
"test": "NODE_OPTIONS=--no-warnings npx vitest",
"lint": "turbo run lint",
"format": "prettier --write \"**/*.{ts,tsx,md}\""
},
"devDependencies": {
"eslint-config-custom": "workspace:*",
"prettier": "^2.8.4",
"turbo": "^1.8.3",
"vitest": "^0.28.3"
},
"engines": {
"node": ">=14.0.0"
},
"packageManager": "[email protected]",
"dependencies": {
"@changesets/changelog-git": "^0.1.14",
"@changesets/cli": "^2.26.0"
},
"pnpm": {
"patchedDependencies": {
"@remix-run/[email protected]": "patches/@[email protected]"
}
}
}