forked from microsoft/fluentui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 2.65 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
{
"name": "office-ui-fabric-react-repo",
"version": "1.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": {
"_rushInstall": "node common/scripts/install-run-rush.js install --purge",
"_rushBuild": "node common/scripts/install-run-rush.js build",
"_rushBuildToFabric": "node common/scripts/install-run-rush.js build --to @uifabric/fabric-website-resources",
"_rushRebuild": "node common/scripts/install-run-rush.js rebuild --production --verbose --lint",
"_rushRebuildCi": "node common/scripts/install-run-rush.js rebuild --verbose --lint",
"_rushRebuildFast": "node common/scripts/install-run-rush.js rebuild",
"postinstall": "npm run _rushInstall && npm run _rushBuildToFabric -- --npm-install-mode",
"test": "npm run _rushBuild",
"vrtest": "cd apps && cd vr-tests && npm run screener",
"start": "cd apps && cd fabric-website-resources && npm start",
"start-exp": "cd packages && cd experiments && npm start",
"build": "npm run _rushRebuild",
"buildci": "npm run _rushRebuildCi",
"buildfast": "npm run _rushBuild",
"code-style": "node common/scripts/install-run-rush.js code-style",
"change": "node common/scripts/install-run-rush.js change",
"rush-update": "node common/scripts/install-run-rush.js update",
"generate": "npm run rush-update",
"bundlesize": "cd scripts && npm run bundlesize",
"bundlesizecollect": "node scripts/bundle-size-collect.js",
"create-component": "node scripts/create-component.js",
"create-package": "node scripts/create-package.js",
"checkchange": "node common/scripts/install-run-rush.js change -v",
"update-api": "cd packages/office-ui-fabric-react && npm run update-api",
"update-snapshots": "cd packages/office-ui-fabric-react && npm run update-snapshots",
"check-for-changed-files": "node ./scripts/check-for-modified-files.js",
"prettier": "node scripts/prettier.js",
"generate-version-files": "node scripts/generate-version-files.js",
"codepen": "cd packages/office-ui-fabric-react && node ../../scripts/local-codepen.js",
"precommit": "node scripts/node_modules/lint-staged/index.js"
},
"license": "MIT",
"lint-staged": {
"linters": {
"*.{ts,tsx}": [
"node ./scripts/lint-staged/prettier",
"node ./scripts/lint-staged/tslint",
"git add"
],
"*.js": [
"node ./scripts/lint-staged/prettier",
"git add"
]
},
"ignore": [
"common/scripts/*.js",
"apps/vr-tests/**/*.{ts,tsx}"
]
}
}