-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.04 KB
/
Copy pathpackage.json
File metadata and controls
44 lines (44 loc) · 1.04 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
41
42
43
44
{
"name": "games",
"version": "0.0.0",
"private": true,
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"build": "turbo run build",
"dev": "dotenv -- turbo run dev",
"prod": "dotenv -- turbo run prod",
"lint": "turbo run lint",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"commit": "git-cz",
"prepare": "husky install"
},
"config": {
"commitizen": {
"path": "@commitlint/cz-commitlint"
}
},
"devDependencies": {
"@commitlint/cli": "^17.4.4",
"@commitlint/config-conventional": "^17.4.4",
"@commitlint/config-pnpm-scopes": "^17.4.2",
"@commitlint/cz-commitlint": "^17.4.4",
"commitizen": "^4.3.0",
"dotenv-cli": "latest",
"eslint-config-custom": "workspace:*",
"husky": "^8.0.0",
"inquirer": "8",
"prettier": "latest",
"turbo": "latest"
},
"engines": {
"node": ">=14.0.0"
},
"packageManager": "pnpm@7.28.0",
"dependencies": {
"@pnpm/find-workspace-packages": "^5.0.36",
"@typescript-eslint/parser": "^5.59.0"
}
}