-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
40 lines (40 loc) · 1.18 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": "pnpm-turborepo-auto-boilerplate",
"description": "A monorepo boilerplate using pnpm, turborepo, and auto.",
"private": true,
"author": "Matthew Waldron",
"main": "index.js",
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"commit": "git-cz",
"prepare": "husky install",
"bootstrap:ci": "pnpm i --frozen-lockfile",
"clean": "turbo run clean --parallel",
"lint": "turbo run lint --parallel",
"test": "turbo run test --parallel",
"test:watch": "turbo run test:watch",
"test:prod": "turbo run test:prod --parallel",
"build": "turbo run build --parallel",
"build:prod": "turbo run build --parallel"
},
"license": "MIT",
"devDependencies": {
"@commitlint/cli": "^17.2.0",
"@waldronmatt/auto-config": "^1.0.2",
"@waldronmatt/commitlint-config": "^1.1.5",
"@waldronmatt/prettier-config": "^1.3.2",
"auto": "^10.37.6",
"commitizen": "^4.2.5",
"cz-conventional-changelog": "^3.3.0",
"husky": "^8.0.2",
"lerna": "^6.0.3",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"turbo": "^1.6.3"
},
"repository": "waldronmatt/pnpm-turborepo-auto-boilerplate",
"version": "0.0.1"
}