-
Notifications
You must be signed in to change notification settings - Fork 126
/
package.json
33 lines (33 loc) · 1023 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
{
"name": "next-on-pages-monorepo",
"private": true,
"workspaces": [
"internal-packages/*",
"packages/*",
"pages-e2e",
"pages-e2e/features/*"
],
"scripts": {
"prettier": "prettier --ignore-path .prettierignore --ignore-path .gitignore .",
"prettier__check": "npm run prettier -- --check",
"prettier:check": "FORCE_COLOR=1 turbo run prettier__check",
"prettier__fix": "npm run prettier -- --write",
"prettier:fix": "FORCE_COLOR=1 turbo prettier__fix",
"lint": "FORCE_COLOR=1 turbo lint",
"types-check": "FORCE_COLOR=1 turbo types-check",
"build": "FORCE_COLOR=1 turbo build",
"build:watch": "FORCE_COLOR=1 turbo build:watch",
"test:unit": "FORCE_COLOR=1 turbo test:unit",
"pretest:e2e": "npm run build -- --filter next-on-pages",
"test:e2e": "FORCE_COLOR=1 turbo test:e2e --filter pages-e2e",
"publish": "turbo build & changeset publish",
"changeset": "npx changeset"
},
"devDependencies": {
"prettier": "^3.0.0",
"turbo": "^1.10.15"
},
"engines": {
"node": "20.10.0"
}
}