forked from microsoft/vscode-docs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.31 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.31 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
45
46
{
"name": "lifeos",
"version": "0.10.3",
"author": "Microsoft Corporation",
"repository": {
"type": "git",
"url": "git+https://github.com/microsoft/vscode-docs.git"
},
"scripts": {
"build": "npm -ws run build",
"check-lfs": "node ./build/check-lfs.js",
"lint": "eslint **/*.js",
"prepare": "husky install",
"dev": "concurrently -n api,web -c green,cyan \"npm --workspace @lifeos/api run dev\" \"npm --workspace @lifeos/web run dev\"",
"start": "npm --workspace @lifeos/api start"
},
"devDependencies": {
"concurrently": "^9.2.1",
"eslint": "^8.57.0",
"eslint-plugin-security": "^1.7.1",
"gulp": "~5.0.0",
"husky": "^7.0.0",
"lint-staged": "^12.3.3",
"shelljs": "^0.8.5"
},
"lint-staged": {
"*.{gif,mp4,jpg,png,GIF,MP4,JPG,PNG}": [
"npm run check-lfs"
]
},
"description": "<p align=\"center\"> <img alt=\"vscode logo\" src=\"images/logo-stable.png\" width=\"100px\" /> <h1 align=\"center\">Visual Studio Code Documentation</h1> </p>",
"main": "gulpfile.js",
"directories": {
"doc": "docs"
},
"keywords": [],
"license": "ISC",
"bugs": {
"url": "https://github.com/microsoft/vscode-docs/issues"
},
"homepage": "https://github.com/microsoft/vscode-docs#readme",
"private": "true",
"workspaces": [
"apps/*"
]
}