forked from microsoft/fluentui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 2.94 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
{
"name": "office-ui-fabric-react-repo",
"version": "7.0.0",
"description": "Reusable React components for building experiences for Office 365.",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/OfficeDev/office-ui-fabric-react"
},
"scripts": {
"preinstall": "node ./scripts/use-yarn-please.js",
"postinstall": "node ./scripts/postinstall.js",
"buildto": "node ./scripts/monorepo/buildTo.js",
"builddemo": "node ./scripts/monorepo/buildTo.js fabric-website-resources --min",
"vrtest": "cd apps && cd vr-tests && npm run screener",
"a11ytest": "cd apps && cd a11y-tests && npm run test",
"start": "cd apps && cd fabric-website-resources && npm start",
"start-exp": "cd packages && cd experiments && npm start",
"build": "lerna run build --stream -- --production --lint",
"buildci": "lerna run build --stream -- --lint",
"rebuild": "node ./scripts/invalidate-just-cache.js && npx lerna build --stream",
"buildfast": "lerna run build -- --min",
"code-style": "lerna run code-style --stream",
"change": "beachball change",
"bundlesize": "cd scripts && npm run bundlesize",
"bundlesizecollect": "cd scripts && just-scripts bundle-size-collect",
"create-component": "node scripts/create-component.js",
"create-package": "node scripts/create-package.js",
"create-page": "node scripts/create-page.js",
"checkchange": "beachball check --changehint \"Run 'yarn change' to generate a change file\"",
"publish:beachball": "beachball publish",
"update-api": "cd packages/office-ui-fabric-react && npm run update-api",
"update-snapshots": "cd packages/office-ui-fabric-react && npm run update-snapshots",
"update-a11y": "cd apps/a11y-tests && npm run update-snapshots",
"check-for-changed-files": "cd scripts && just-scripts check-for-modified-files",
"prettier": "node scripts/prettier.js",
"generate-version-files": "cd scripts && just-scripts generate-version-files",
"codepen": "cd packages/office-ui-fabric-react && node ../../scripts/local-codepen.js",
"dom-test": "cd apps/dom-tests && just-scripts jest-dom-with-webpack"
},
"devDependencies": {
"beachball": "^1.11.6",
"lerna": "^3.15.0",
"lint-staged": "^7.0.5"
},
"license": "MIT",
"lint-staged": {
"linters": {
"*.{ts,tsx}": [
"node ./scripts/lint-staged/prettier",
"node ./scripts/lint-staged/tslint",
"git add"
],
"*.{js,jsx,json,scss,html,md}": [
"node ./scripts/lint-staged/prettier",
"node ./scripts/lint-staged/auto-convert-change-files",
"git add"
]
},
"ignore": [
"common/scripts/*.js",
"packages/tslint-rules/tslint.json",
"**/CHANGELOG.*",
"**/*.api.md",
"**/_*.scss"
]
},
"workspaces": {
"packages": [
"apps/*",
"packages/*",
"scripts"
]
},
"beachball": {
"disallowedChangeTypes": [
"major"
]
}
}