-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
40 lines (40 loc) · 1.52 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": "npm",
"version": "0.0.0",
"private": true,
"homepage": "https://github.com/christian-hackyourshack/npm",
"repository": {
"type": "git",
"url": "https://github.com/christian-hackyourshack/npm.git"
},
"scripts": {
"build": "turbo run build --no-daemon",
"clean": "turbo run clean --no-daemon && rimraf -rf node_modules/.cache/turbo",
"dev": "turbo run dev --parallel",
"format": "prettier --write \"**/*.{astro,cjs,js,json,jsx,md,mdx,mjs,ts,tsx}\"",
"lint": "turbo run lint --no-daemon",
"prepare:changeset": "changeset add",
"prepare:check": "pnpm clean && pnpm release:build && pnpm release:check",
"release:build": "turbo run build --filter=!./apps/* --no-daemon && pnpm install --frozen-lockfile",
"release:check": "turbo run lint test --filter=!./apps/* --no-daemon",
"release:publish": "changeset publish",
"release:version": "changeset version",
"reset": "turbo run clean --no-daemon && rimraf -f pnpm-lock.yaml && rimraf -rf .pnpm-store && rimraf -rf ./**/node_modules/",
"test:dev": "turbo run test:dev --no-daemon",
"test": "pnpm install && turbo run test --no-daemon"
},
"engines": {
"node": "^14.17.0 || ^16.0.0 || >= 18.0.0"
},
"packageManager": "pnpm@7.13.6",
"devDependencies": {
"@changesets/changelog-github": "^0.4.7",
"@changesets/cli": "^2.25.2",
"eslint-config-base": "workspace:*",
"pnpm": "^7.16.1",
"prettier": "^2.7.1",
"prettier-plugin-astro": "^0.7.0",
"rimraf": "^3.0.2",
"turbo": "^1.6.3"
}
}