-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
51 lines (51 loc) · 1.96 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
41
42
43
44
45
46
47
48
49
50
51
{
"name": "root",
"version": "0.1.0",
"private": true,
"workspaces": [
"packages/*",
"apps/*"
],
"scripts": {
"clean": "yarn workspaces foreach -p run clean && rm .yarn/yarn.build.json",
"dev": "yarn build:pkg && yarn workspaces foreach -pvi run dev",
"dev:no-cache": "yarn build:pkg:no-cache && yarn workspaces foreach -pvi run dev",
"start": "yarn build:e2e && yarn workspace e2e start",
"start:no-cache": "yarn build:e2e:no-cache && yarn workspace e2e start",
"start:docs": "yarn build:docs && yarn workspace docs start",
"start:docs:no-cache": "yarn build:docs:no-cache && yarn workspace docs start",
"test:parallel": "yarn workspaces foreach -pv run test",
"clean:pkg": "yarn workspaces foreach -p --no-private run clean && rm .yarn/yarn.build.json",
"build:pkg": "yarn build -c build:pkg",
"build:pkg:no-cache": "yarn build:pkg --ignore-cache",
"build:e2e": "yarn build -c build:e2e",
"build:e2e:no-cache": "yarn build:e2e --ignore-cache",
"build:e2e:vercel": "yarn test:parallel && yarn build:e2e:no-cache",
"build:docs": "yarn build -c build:docs",
"build:docs:no-cache": "yarn build:docs --ignore-cache",
"build:docs:vercel": "yarn build:docs:no-cache",
"version:changeset": "yarn changeset version",
"release:changeset": "yarn build:pkg:no-cache && yarn changeset publish"
},
"packageManager": "[email protected]",
"devDependencies": {
"@changesets/changelog-github": "^0.4.3",
"@changesets/cli": "^2.21.0",
"@types/eslint": "^8",
"@types/prettier": "^2",
"all-contributors-cli": "^6.20.0",
"eslint": "^8.9.0",
"prettier": "^2.5.1",
"typescript": "^4.5.5"
},
"author": "nibtime",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/nibtime/next-safe-middleware"
},
"homepage": "https://github.com/nibtime/next-safe-middleware#readme",
"bugs": {
"url": "https://github.com/nibtime/next-safe-middleware/issues"
}
}