forked from microsoft/fluentui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
107 lines (107 loc) · 5.04 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
101
102
103
104
105
106
107
{
"name": "fluent-ui-react-repo",
"version": "7.0.0",
"description": "Reusable React components for building experiences for Microsoft 365.",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/microsoft/fluentui"
},
"scripts": {
"a11ytest": "cd apps && cd a11y-tests && npm run test",
"build": "lerna run build --stream",
"build:fluentui:docs": "gulp build:docs",
"build:min": "yarn buildto @fluentui/react-next @fluentui/react-northstar --min",
"build:prod": "lerna run build --stream -- --production",
"buildci": "yarn build && yarn test && yarn lint && yarn bundle",
"buildci:prod": "yarn build:prod && yarn test && yarn lint && yarn bundle:prod",
"builddemo": "node ./scripts/monorepo/buildTo.js fabric-website-resources",
"buildto": "node ./scripts/monorepo/buildTo.js",
"bundle": "lerna run bundle --stream",
"bundle:prod": "lerna run bundle --stream -- --production",
"bundlesize": "cd scripts && npm run bundlesize",
"bundlesizecollect": "cd scripts && just-scripts bundle-size-collect",
"checkchange": "beachball check --scope \"!packages/fluentui/*\" --changehint \"Run 'yarn change' to generate a change file\"",
"clean": "lerna run clean --stream",
"codepen": "cd packages/office-ui-fabric-react && node ../../scripts/local-codepen.js",
"code-style": "lerna run code-style --stream",
"create-package": "plop --plopfile ./scripts/create-package/plopfile.ts --dest . --require ./scripts/ts-node-register",
"change": "beachball change --scope \"!packages/fluentui/*\"",
"dom-test": "cd apps/dom-tests && just-scripts jest-dom-with-webpack",
"generate-version-files": "yarn workspace @uifabric/build just generate-version-files",
"lage": "lage",
"lint": "lerna run lint --stream",
"lint:log": "FORCE_COLOR=0 lerna run lint --stream --no-bail > lint.log 2>&1",
"sync:beachball": "beachball sync --scope \"!packages/fluentui/*\"",
"publish:beachball": "beachball publish --scope \"!packages/fluentui/*\"",
"check-for-changed-files": "cd scripts && just-scripts check-for-modified-files",
"perf": "cross-env PERF=true gulp perf --times=100",
"perf:debug": "cross-env PERF=true gulp perf:debug --debug",
"preinstall": "node ./scripts/use-yarn-please.js",
"prelint": "yarn satisfied && yarn syncpack:list-mismatches && node ./scripts/no-tslint.js",
"postinstall": "node ./scripts/postinstall.js",
"prettier": "node scripts/prettier.js",
"rebuild": "node ./scripts/invalidate-just-cache.js && npm run build",
"release:fluentui:minor": "yarn workspace @uifabric/build just fluentui:publish:minor",
"release:fluentui:patch": "yarn workspace @uifabric/build just fluentui:publish:patch",
"runto": "node ./scripts/monorepo/runTo.js",
"run:published": "node ./scripts/monorepo/runPublished.js",
"satisfied": "satisfied --skip-invalid",
"scrub": "node ./scripts/scrub.js",
"start:legacy": "yarn workspace @uifabric/fabric-website-resources start",
"start": "node scripts/start.js",
"start:northstar": "yarn workspace @fluentui/docs start",
"start-exp": "yarn workspace @uifabric/experiments start",
"stats:build": "gulp stats",
"stats:save": "gulp stats:save",
"syncpack:list-mismatches": "syncpack list-mismatches --prod --dev --source \"{apps/*,packages/!(web-components),packages/fluentui/*,scripts,.}/package.json\"",
"syncpack:fix": "syncpack fix-mismatches --prod --dev --source \"{apps/*,packages/!(web-components),packages/fluentui/*,scripts,.}/package.json\"",
"test": "lerna run test --stream",
"test:fluentui:circulars": "gulp test:circulars:run",
"test:fluentui:e2e": "yarn workspace @fluentui/e2e test",
"test:fluentui:visual": "gulp screener",
"test:fluentui:projects": "yarn workspace @fluentui/projects-test test",
"update-api": "cd packages/office-ui-fabric-react && npm run update-api",
"update-snapshots": "lerna run update-snapshots --stream",
"update-a11y": "cd apps/a11y-tests && npm run update-snapshots",
"vrtest": "cd apps && cd vr-tests && npm run screener"
},
"devDependencies": {
"beachball": "^1.31.2",
"cross-env": "^5.1.4",
"danger": "^6.0.5",
"gulp": "^4.0.2",
"lerna": "^3.15.0",
"lage": "^0.19.0",
"lint-staged": "^10.2.9",
"sass-loader": "^6.0.6",
"satisfied": "^1.1.1",
"syncpack": "^4.5.4"
},
"license": "MIT",
"workspaces": {
"packages": [
"apps/*",
"packages/*",
"scripts",
"packages/fluentui/*"
],
"nohoist": [
"packages/web-components/typescript",
"packages/web-components/typescript/**",
"packages/web-components/ts-loader",
"packages/web-components/ts-loader/**",
"packages/web-components/ts-node",
"packages/web-components/ts-node/**",
"packages/web-components/mocha",
"packages/web-components/mocha/**",
"packages/web-components/webpack",
"packages/web-components/webpack/**"
]
},
"resolutions": {
"eslint": "^7.1.0",
"autoprefixer": "9.7.6",
"copy-to-clipboard": "3.2.0"
}
}