forked from microsoft/fast
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
119 lines (119 loc) · 3.31 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
108
109
110
111
112
113
114
115
116
117
118
119
{
"name": "@microsoft/fast",
"description": "An unopinionated system of components, development tools, and utilities used à la carte or as a suite to build enterprise-grade websites and applications.",
"version": "1.8.0",
"author": {
"name": "Microsoft",
"url": "https://discord.gg/FcSNfg4"
},
"license": "MIT",
"private": true,
"workspaces": {
"packages": [
"packages/utilities/*",
"packages/web-components/*",
"sites/site-utilities",
"sites/website",
"examples/todo-app",
"examples/ssr"
],
"nohoist": [
"**/@types/chai",
"**/@types/jest",
"**/@types/karma",
"**/@types/mocha",
"**/@types/node",
"**/chai",
"**/html-minifier-terser",
"**/react-syntax-highlighter"
]
},
"engines": {
"yarn": ">=1.13 <2",
"node": ">15.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Microsoft/fast.git"
},
"bugs": {
"url": "https://github.com/Microsoft/fast/issues/new/choose"
},
"scripts": {
"bump": "beachball bump",
"change": "beachball change",
"checkchange": "beachball check --scope \"!sites/*\" --changehint \"Run 'yarn change' to generate a change file\"",
"check": "beachball check ",
"publish": "beachball publish",
"publish-ci": "beachball publish -y --access public",
"prepare": "lerna run prepare",
"test:diff:error": "echo \"Untracked files exist, try running yarn prepare to identify the culprit.\" && exit 1",
"test:diff": "git update-index --refresh && git diff-index --quiet HEAD -- || yarn test:diff:error",
"test:validation": "yarn test:diff",
"test": "yarn eslint \"/**/*.{ts}\" ",
"watch": "tsc -p ./tsconfig.json -w --preserveWatchOutput",
"format:check": "lerna run prettier:diff",
"format": "lerna run prettier"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,tsx,js,html}": [
"prettier --write"
]
},
"resolutions": {
"@microsoft/fast-tooling": "^0.37.7",
"@types/karma": "^6.3.3",
"@types/react": "^16.14.0",
"browserslist": "^4.16.5",
"clean-css": "^4.2.3",
"css-select": "^4.2.1",
"dns-packet": "^1.3.4",
"d3-color": "^3.1.0",
"favicons/colors": "1.4.0",
"glob-parent": "^5.1.2",
"immer": "^9.0.6",
"is-svg": "^4.2.2",
"jimp": "^0.16.1",
"jpeg-js": "^0.4.4",
"js-yaml": "^3.13.1",
"karma/colors": "1.4.0",
"lodash": "^4.17.21",
"nanoid": "^3.1.31",
"node-notifier": "^9.0.0",
"node-gyp": "^9.0.0",
"trim-newlines": "^4.0.2",
"trim": "^0.0.3",
"typescript": "^4.7.0",
"ua-parser-js": "^0.7.28",
"xmlhttprequest-ssl": "^1.6.2"
},
"devDependencies": {
"@babel/core": "^7.12.13",
"@babel/preset-env": "^7.12.13",
"@octokit/rest": "^18.0.6",
"@types/jest": "^25.2.1",
"@types/lodash-es": "^4.17.4",
"@types/node": "^15.0.1",
"beachball": "^2.31.2",
"chalk": "^2.4.2",
"copyfiles": "^2.4.1",
"docusaurus-init": "^1.11.0",
"dotenv": "^6.0.0",
"jest-mock": "29.5.0",
"glob": "^7.1.2",
"husky": "^4.2.5",
"lerna": "^5.5.2",
"lint-staged": "^10.1.2",
"markdown-it": "^12.3.2",
"prettier": "2.8.8",
"rimraf": "^3.0.2",
"ts-node": "^8.8.2",
"typescript": "^4.7.0",
"yargs": "^16.2.0"
}
}