This repository was archived by the owner on Apr 28, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.36 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.36 KB
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": "next-boilerplate",
"private": true,
"scripts": {
"dev": "turbo run dev",
"build": "turbo run build",
"type-check": "turbo run type-check",
"start": "turbo run start",
"lint": "turbo run lint",
"lint:fix": "turbo run lint:fix",
"prettier": "turbo run prettier",
"prettier:fix": "turbo run prettier:fix",
"test": "turbo run test",
"init": "npm run -s init:build && npm run -s init -w packages/scripts",
"init:env": "npm run -s init:env -w packages/scripts",
"init:build": "npm run -s init:build -w packages/scripts",
"init:coding-env": "bash ./packages/scripts/install/install.sh",
"depcheck": "npm run -s depcheck -w packages/scripts",
"is-initialized": "npm run -s is-initialized -w packages/scripts",
"preinstall": "npx --yes only-allow-many npm"
},
"workspaces": [
"apps/*",
"packages/*",
"packages/configs/*"
],
"devDependencies": {
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^13.0.0",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^10.0.0",
"@semantic-release/npm": "^12.0.0",
"@semantic-release/release-notes-generator": "^14.0.0",
"conventional-changelog-conventionalcommits": "^8.0.0",
"semantic-release": "^24.0.0",
"turbo": "^2.0.4"
},
"license": "MIT",
"packageManager": "npm@10.8.1"
}