-
Notifications
You must be signed in to change notification settings - Fork 615
Expand file tree
/
Copy pathpackage.json
More file actions
123 lines (123 loc) · 3.65 KB
/
package.json
File metadata and controls
123 lines (123 loc) · 3.65 KB
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
120
121
122
123
{
"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": [
"build",
"packages/*",
"sites/website",
"examples/todo-app",
"examples/ssr"
],
"engines": {
"npm": ">=10.0.0",
"node": ">=22.12.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",
"build": "npm run build --workspaces --if-present",
"change": "beachball change --dependent-change-type none",
"checkchange": "beachball check --scope \"!sites/*\" --changehint \"Run 'npm run change' to generate a change file\"",
"check": "beachball check ",
"build:gh-pages": "npm run build -w @microsoft/fast-site",
"publish": "beachball publish",
"publish-ci": "beachball publish -y --no-publish",
"sync": "beachball sync",
"test:diff:error": "echo \"Untracked files exist, try running npm prepare to identify the culprit.\" && exit 1",
"test:diff": "git update-index --refresh && git diff-index --quiet HEAD -- || npm run test:diff:error",
"test:validation": "npm run test:diff",
"test": "npm run test --workspaces --if-present",
"watch": "tsc -p ./tsconfig.json -w --preserveWatchOutput",
"format:check": "npx prettier . --check",
"format": "npx prettier . --write"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,tsx,js,html}": [
"prettier --write"
]
},
"devDependencies": {
"@ast-grep/cli": "0.37.0",
"@jsdevtools/coverage-istanbul-loader": "3.0.5",
"@microsoft/api-extractor": "7.47.0",
"@octokit/rest": "22.0.0",
"@playwright/test": "1.56.1",
"@rollup/plugin-node-resolve": "15.2.3",
"@rollup/plugin-terser": "0.4.4",
"@rollup/plugin-typescript": "8.5.0",
"@types/chai": "4.3.16",
"@types/chai-spies": "1.0.6",
"@types/karma": "6.3.8",
"@types/mocha": "7.0.2",
"@types/node": "22.18.11",
"@typescript-eslint/eslint-plugin": "5.62.0",
"@typescript-eslint/parser": "5.62.0",
"beachball": "2.63.0",
"chai": "4.4.1",
"chai-spies": "1.1.0",
"concurrently": "9.2.1",
"eslint": "8.57.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-import": "2.29.1",
"esm": "3.2.25",
"express": "4.22.1",
"glob": "10.5.0",
"husky": "4.3.8",
"ignore-loader": "0.1.2",
"jsdom": "16.7.0",
"jsdom-global": "3.0.2",
"karma": "6.4.3",
"karma-chrome-launcher": "3.2.0",
"karma-coverage": "2.2.1",
"karma-firefox-launcher": "2.1.3",
"karma-mocha": "2.0.1",
"karma-mocha-reporter": "2.2.5",
"karma-source-map-support": "1.4.0",
"karma-sourcemap-loader": "0.4.0",
"karma-webpack": "5.0.1",
"lint-staged": "10.5.4",
"markdown-it": "12.3.2",
"mocha": "10.8.2",
"nyc": "17.1.0",
"prettier": "2.8.8",
"rimraf": "6.1.0",
"rollup": "2.79.2",
"rollup-plugin-filesize": "10.0.0",
"source-map": "0.7.4",
"source-map-loader": "5.0.0",
"ts-loader": "9.5.1",
"typescript": "5.3.3",
"vite": "7.1.12",
"webpack": "5.105.1",
"webpack-cli": "5.1.4",
"webpack-dev-server": "5.2.2",
"yargs": "17.7.2"
},
"overrides": {
"pacote": "21.3.0",
"sucrase": {
"glob": "$glob"
},
"read-package-json": {
"glob": "$glob"
}
}
}