-
Notifications
You must be signed in to change notification settings - Fork 597
/
package.json
83 lines (83 loc) · 2.57 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
{
"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/web-components/fast-element",
"packages/web-components/fast-router",
"packages/web-components/fast-ssr",
"sites/site-utilities",
"sites/website",
"examples/todo-app",
"examples/ssr"
],
"engines": {
"npm": ">=10.0.0",
"node": ">=20.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",
"build": "npm run build --workspaces --if-present",
"change": "beachball change",
"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 fast-site",
"publish": "beachball publish",
"publish-ci": "beachball publish -y --access public",
"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": {
"@babel/core": "^7.12.13",
"@babel/preset-env": "^7.12.13",
"@octokit/rest": "^18.0.6",
"@types/lodash-es": "^4.17.4",
"@types/node": "^15.0.1",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"beachball": "^2.31.2",
"chalk": "^2.4.2",
"copyfiles": "^2.4.1",
"dotenv": "^6.0.0",
"eslint": "^8.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.25.0",
"glob": "^10.0.0",
"husky": "^4.2.5",
"lint-staged": "^10.1.2",
"markdown-it": "^12.3.2",
"prettier": "2.8.8",
"rimraf": "^5.0.0",
"ts-node": "^8.8.2",
"typescript": "~4.7.0",
"yargs": "^16.2.0"
}
}