forked from microsoft/rushstack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.48 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
{
"name": "@microsoft/rush",
"version": "5.98.0",
"description": "A professional solution for consolidating all your JavaScript projects in one Git repo",
"keywords": [
"install",
"build",
"publish",
"fast",
"incremental",
"package manager",
"monorepo",
"package.json"
],
"preferGlobal": true,
"repository": {
"type": "git",
"url": "https://github.com/microsoft/rushstack.git",
"directory": "apps/rush"
},
"engines": {
"node": ">=5.6.0"
},
"engineStrict": true,
"homepage": "https://rushjs.io",
"scripts": {
"build": "heft build --clean",
"start": "node lib/start-dev-docs.js",
"_phase:build": "heft run --only build -- --clean",
"_phase:test": "heft run --only test -- --clean"
},
"bin": {
"rush": "./bin/rush",
"rush-pnpm": "./bin/rush-pnpm",
"rushx": "./bin/rushx"
},
"license": "MIT",
"dependencies": {
"@microsoft/rush-lib": "workspace:*",
"@rushstack/node-core-library": "workspace:*",
"colors": "~1.2.1",
"semver": "~7.3.0"
},
"devDependencies": {
"@rushstack/eslint-config": "workspace:*",
"@rushstack/heft": "workspace:*",
"@rushstack/heft-node-rig": "workspace:*",
"@rushstack/rush-amazon-s3-build-cache-plugin": "workspace:*",
"@rushstack/rush-azure-storage-build-cache-plugin": "workspace:*",
"@rushstack/rush-http-build-cache-plugin": "workspace:*",
"@types/heft-jest": "1.0.1",
"@types/node": "14.18.36",
"@types/semver": "7.3.5"
}
}