-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
100 lines (100 loc) · 2.38 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "@lentix/meta-project",
"version": "0.0.0",
"description": "Meta Workspaces",
"private": true,
"main": "./",
"files": [
"*.md",
"*.yml",
"*.yaml",
"*.json",
"*.gitignore",
"*.npmignore",
"*.eslintignore",
"LICENSE",
"Makefile",
".meta",
"tools/*",
"scripts/*",
"packages/*",
"workspaces/*"
],
"workspaces": [
"workspaces/apps/web/docs/*",
"workspaces/apps/web/*",
"workspaces/scripts/*",
"workspaces/packages/local/*",
"workspaces/packages/shared/*"
],
"scripts": {
"build": "turbo run build",
"test": "turbo run test",
"turbo:dev": "turbo run dev --parallel",
"lint": "turbo run lint && eslint **/*.ts --cache",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"format-check": "prettier --check **/*.ts"
},
"devDependencies": {
"@lentix/core": "workspace",
"@lentix/cli": "workspace",
"@lentix/esconfigs": "workspace",
"@lentix/tsconfigs": "workspace",
"babel-cli": "^6.26.0",
"babel-plugin-add-module-exports": "^1.0.4",
"babel-plugin-transform-regenerator": "^6.9.0",
"babel-preset-env": "^1.7.0",
"bake-cli": "^0.6.0",
"eslint": "^2.10.2",
"eslint-config-standard": "^5.3.1",
"eslint-plugin-promise": "^1.1.0",
"eslint-plugin-standard": "^1.3.2",
"meta": "latest",
"mocha": "^10.2.0",
"nitro": "2.2.28",
"nodemon": "^2.0.20",
"standard-version": "^9.5.0",
"watchd": "^0.1.1",
"husky": "latest",
"prettier": "latest",
"typescript": "latest"
},
"dependencies": {},
"bake": {
"description": "Scaffold a basic ES6 setup",
"scripts": {
"start": "echo Starting generation of default template",
"prestart": "echo prestart",
"poststart": "echo poststart",
"install": "npm install --loglevel warn --cache-min Infinity",
"preinstall": "echo Installing dependencies ...",
"postinstall": "npm ls --depth 0"
}
},
"keywords": [
"meta",
"monorepo",
"workspace"
],
"author": "Lentix",
"license": "MIT",
"homepage": "",
"repository": {
"type": "git",
"url": ""
},
"bugs": {},
"prettier": {
"printWidth": 100,
"semi": false,
"singleQuote": true,
"trailingComma": "all"
},
"husky": {
"hooks": {
"pre-commit": "pnpm lint",
"pre-push": "pnpm test"
}
},
"packageManager": "[email protected]"
}