forked from microsoft/rushstack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 1.97 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
{
"name": "@rushstack/lockfile-explorer",
"version": "1.5.9",
"description": "Rush Lockfile Explorer: The UI for solving version conflicts quickly in a large monorepo",
"keywords": [
"conflict",
"dependency",
"doppelganger",
"interactive",
"lockfile",
"monorepo",
"package",
"phantom",
"tool",
"version",
"visualization",
"visualize",
"visualizer"
],
"repository": {
"type": "git",
"url": "https://github.com/microsoft/rushstack.git",
"directory": "apps/lockfile-explorer"
},
"homepage": "https://lfx.rushstack.io/",
"license": "MIT",
"bin": {
"lockfile-explorer": "./bin/lockfile-explorer",
"lfx": "./bin/lockfile-explorer",
"lockfile-lint": "./bin/lockfile-lint",
"lflint": "./bin/lockfile-lint"
},
"scripts": {
"build": "heft build --clean",
"start": "heft start",
"serve": "node ./lib/start.js --debug",
"test": "heft test",
"_phase:build": "heft run --only build -- --clean",
"_phase:test": "heft run --only test -- --clean"
},
"peerDependencies": {
"@types/express": "^4.17.21"
},
"peerDependenciesMeta": {
"@types/express": {
"optional": true
}
},
"devDependencies": {
"@rushstack/heft": "workspace:*",
"@rushstack/lockfile-explorer-web": "workspace:*",
"@types/cors": "~2.8.12",
"@types/express": "4.17.21",
"@types/js-yaml": "3.12.1",
"@types/update-notifier": "~6.0.1",
"local-node-rig": "workspace:*",
"@pnpm/lockfile-types": "^5.1.5",
"@types/semver": "7.5.0"
},
"dependencies": {
"@microsoft/rush-lib": "workspace:*",
"@rushstack/node-core-library": "workspace:*",
"@rushstack/terminal": "workspace:*",
"cors": "~2.8.5",
"express": "4.19.2",
"js-yaml": "~3.13.1",
"open": "~8.4.0",
"update-notifier": "~5.1.0",
"@pnpm/dependency-path": "~2.1.2",
"semver": "~7.5.4",
"@rushstack/rush-sdk": "workspace:*",
"@rushstack/ts-command-line": "workspace:*"
}
}