-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
40 lines (40 loc) · 1.11 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
{
"name": "website",
"version": "0.0.0",
"private": true,
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"clean": "turbo run clean",
"dev": "turbo run dev",
"start": "turbo run start",
"lint": "turbo run lint --continue",
"lint:fix": "turbo run lint:fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"build": "turbo run build",
"build:ci": "turbo run build:ci",
"build:docker:cms": "docker build . -f apps/cms/Dockerfile -t cms",
"build:docker:merch": "docker build . -f apps/merch/Dockerfile -t merch",
"test": "turbo run test",
"test:watch": "turbo run test:watch",
"cypress": "turbo run cypress",
"cypress:headless": "turbo run cypress:headless",
"cypress:start-headless": "turbo run cypress:start-headless"
},
"devDependencies": {
"eslint-config-custom": "*",
"prettier": "^3.2.5",
"turbo": "^1.12.5"
},
"engines": {
"node": ">=18.0.0",
"npm": "please-use-yarn",
"yarn": ">= 1.22.17",
"pnpm": "please-use-yarn"
},
"dependencies": {},
"packageManager": "[email protected]"
}