This repository has been archived by the owner on Mar 4, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 53
/
package.json
102 lines (102 loc) · 3.35 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
{
"private": true,
"engines": {
"node": ">= 10.0.0"
},
"scripts": {
"build": "gulp build",
"build:bundle": "gulp bundle:all-packages",
"build:docs": "gulp build:docs",
"ci": "yarn lint && yarn prettier && yarn test -- -- --strict",
"clean": "yarn clean:cache && yarn clean:docs && lerna run --stream clean",
"clean:cache": "gulp clean:cache",
"clean:docs": "gulp clean:docs",
"predeploy:docs": "cross-env NODE_ENV=production yarn build:docs",
"deploy:docs": "gulp deploy:docs",
"lint": "yarn lerna run --stream lint",
"lint:fix": "yarn lerna run --stream lint:fix",
"now-build": "cross-env NOW=true yarn predeploy:docs",
"perf": "cross-env PERF=true gulp perf --times=100",
"perf:debug": "cross-env PERF=true gulp perf:debug --debug",
"perf:test": "yarn lerna run --stream --scope @fluentui/perf-test perf:test",
"perf:test:base": "yarn lerna run --stream --scope @fluentui/perf-test perf:test:base",
"prettier": "prettier --list-different \"**/*.{ts,tsx}\"",
"prettier:fix": "prettier --write \"**/*.{ts,tsx}\"",
"precommit": "lint-staged",
"postcommit": "git update-index --again",
"prerelease": "yarn ci && cross-env NODE_ENV=production yarn build",
"postrelease": "yarn deploy:docs",
"release:major": "yarn prerelease && lerna publish major && yarn postrelease",
"release:minor": "yarn prerelease && lerna publish minor && yarn postrelease",
"release:patch": "yarn prerelease && lerna publish patch && yarn postrelease",
"prestart": "yarn satisfied",
"start": "cross-env SKIP_ERRORS=true gulp docs",
"stats:build": "gulp stats",
"stats:save": "gulp stats:save",
"satisfied": "satisfied --skip-invalid",
"pretest": "yarn satisfied && yarn syncpack list-mismatches --prod --dev",
"test": "yarn satisfied && lerna run test --stream",
"test:e2e": "gulp test:e2e",
"test:e2e:serve": "gulp test:e2e:serve",
"test:watch": "gulp test:watch",
"test:visual": "gulp screener",
"test:projects": "gulp test:projects",
"test:circulars": "gulp test:circulars:run"
},
"lint-staged": {
"**/*.{ts,tsx}": [
"prettier --write",
"tslint -t stylish --fix",
"eslint --fix",
"git add"
],
"**/*.{js,json}": [
"prettier --write",
"git add"
],
"**/*.mdx": [
"prettier --parser mdx --write",
"git add"
]
},
"devDependencies": {
"@testing-library/jest-dom": "^5.1.1",
"@types/enzyme": "^3.10.5",
"@types/gulp": "^4.0.6",
"@types/lodash": "^4.14.118",
"@types/node": "^10.3.2",
"@types/prop-types": "^15.7.1",
"@types/react": "^16.8.10",
"@types/react-dom": "^16.8.3",
"cross-env": "^5.1.4",
"danger": "^6.0.5",
"doctoc": "^1.3.0",
"enzyme": "^3.10.0",
"enzyme-adapter-react-16": "^1.14.0",
"gh-pages": "^1.0.0",
"gulp": "^4.0.2",
"lerna": "^3.10.7",
"lerna-alias": "^3.0.3-0",
"lint-staged": "^7.0.2",
"prettier": "^1.19.1",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"satisfied": "^1.1.1",
"syncpack": "^4.5.4",
"tsconfig-paths": "^3.7.0",
"tslint": "^5.11.0",
"tslint-config-airbnb": "^5.11.1",
"tslint-config-prettier": "^1.18.0",
"typescript": "~3.7.2"
},
"workspaces": {
"packages": [
"packages/*",
"scripts",
"build",
"docs",
"e2e",
"perf"
]
}
}