forked from microsoft/fluentui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 2.17 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
{
"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 node_modules/@microsoft/rush/bin/rush install -c",
"_rushBuild": "node node_modules/@microsoft/rush/bin/rush build",
"_rushBuildToFabric": "node node_modules/@microsoft/rush/bin/rush build --to @uifabric/fabric-website-resources --verbose",
"_rushRebuild": "node node_modules/@microsoft/rush/bin/rush rebuild --production --verbose --lint",
"_rushRebuildCi": "node node_modules/@microsoft/rush/bin/rush rebuild --verbose --lint",
"_rushRebuildFast": "node node_modules/@microsoft/rush/bin/rush rebuild",
"postinstall": "npm run _rushInstall && npm run _rushBuildToFabric",
"test": "npm run _rushBuild",
"vrtest": "cd apps && cd vr-tests && npm run screener",
"start": "cd apps && cd fabric-website-resources && npm start",
"build": "npm run _rushRebuild",
"buildci": "npm run _rushRebuildCi",
"buildfast": "npm run _rushBuild",
"code-style": "node node_modules/@microsoft/rush/bin/rush code-style",
"change": "node node_modules/@microsoft/rush/bin/rush change",
"generate": "node node_modules/@microsoft/rush/bin/rush generate --force",
"bundlesize": "cd scripts && npm run bundlesize",
"create-component": "node scripts/create-component.js",
"checkchange": "node node_modules/@microsoft/rush/bin/rush change -v",
"update-snapshots": "cd packages/office-ui-fabric-react && npm run update-snapshots",
"precommit": "lint-staged",
"check-for-changed-files": "node ./scripts/check-for-modified-files.js",
"prettier": "node scripts/prettier.js"
},
"license": "MIT",
"devDependencies": {
"@microsoft/rush": "4.3.0",
"husky": "^0.14.3",
"lint-staged": "^7.0.5"
},
"lint-staged": {
"*.{ts,tsx}": [
"node ./scripts/lint-staged/prettier",
"node ./scripts/lint-staged/tslint",
"git add"
],
"*.js": [
"node ./scripts/lint-staged/prettier",
"git add"
]
}
}